Forum Discussion

Cyriackpazhe's avatar
Cyriackpazhe
Icon for Helper III rankHelper III
1 year ago
Solved

Dax



I want to compute the sales 
I want to compute the sales considering the first day of sales only. 
1. The the first figure I avoided the Iteration of product table. Why did i not get an output.

2. I Avoided the iteration over the product table again, But the measure gave me an Output.

3. I iterated over the product table. Is it necessary to iterate over product table. What are the issues with first and second measure. Can someone help me out

  • Syntactically the first and second measure are identical. Min( sales[order date] ) == minx( sales, sales[order date]). The only difference is you have wrapped on in calculate, since there is no row context or calculate modifiers it does nothing.

     

    The 3rd is wrong. You are summing the min order dates of each product together

     

    It is not clear why your 1st and 2nd should have differing results 

  • Deku's avatar
    Deku
    1 year ago

    The first two return a single date for the first order from any product. So you will only get sales from products on that had sales on that day.

     

    When you iterate products you are getting the first sales date, and then the sales amount per product, then summing the results. So this also includes products that have first orders after the very first order date

8 Replies

  • Deku's avatar
    Deku
    Icon for Super User rankSuper User

    Syntactically the first and second measure are identical. Min( sales[order date] ) == minx( sales, sales[order date]). The only difference is you have wrapped on in calculate, since there is no row context or calculate modifiers it does nothing.

     

    The 3rd is wrong. You are summing the min order dates of each product together

     

    It is not clear why your 1st and 2nd should have differing results 



  • The third one is the correct one. I'm summing the sales amount of the product on the first day of sales.

     

    • Deku's avatar
      Deku
      Icon for Super User rankSuper User

      You're right, with the formatting on the measure I misread it

      • Cyriackpazhe's avatar
        Cyriackpazhe
        Icon for Helper III rankHelper III

        So my doubt is, is it necessary to iterate over the product table?? Why do i get a different result when i don't iterate over product

  • v-prasare's avatar
    v-prasare
    Icon for Community Support rankCommunity Support

    Hi Cyriackpazhe,

     As we haven’t heard back from you, we wanted to kindly follow up to check if the below solution provided for your issue worked? or let us know if you need any further assistance here?

     

     

     

    Thanks,

    Prashanth Are

    MS Fabric community support

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly and give Kudos if helped you resolve your query

  • v-prasare's avatar
    v-prasare
    Icon for Community Support rankCommunity Support

    Hi CyriackpazheAs we haven’t heard back from you, we wanted to kindly follow up to check if the below solution provided for your issue worked? or let us know if you need any further assistance here?

     

     

     

    Thanks,

    Prashanth Are

    MS Fabric community support

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly and give Kudos if helped you resolve your query

  • v-prasare's avatar
    v-prasare
    Icon for Community Support rankCommunity Support

    Hi Cyriackpazhe,

    As we haven’t heard back from you, we wanted to kindly follow up to check if the below solution provided for your issue worked? or let us know if you need any further assistance here?

     

     

     

    Thanks,

    Prashanth Are

    MS Fabric community support

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly and give Kudos if helped you resolve your query