Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Time intelligence case!

Hi Guys,

 

I have a large data set of monthly data over several years and have calculated last months sales using the following DAX.

 

Total sales last month = CALCULATE ([Total sales];
                                                   DATEADD (Dates[Date];-1;MONTH ) )

 

 I have no sales data for any months of January and hence no "sales last month" in february.. For my purpouse I need to move all "Total sales last month" in January to February.. Does anybody have a solution to that?

 

DateTotal SalesTotal Sales Last Month
December 201520050
January 20160200
February 20161000

 

(I need to get the 200 in January 2016 down to February 2016)

 

Would be greatly appreciated!

  • Hi Anonymous,

     

    Can you do

     

    Total sales last month = IF

    (

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-1;MONTH ) ) = 0;

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-2;MONTH ) );

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-1;MONTH ) );

     )

     

    or were you hoping for something that would work backwards and find the fisrt non zero value?

     

    Chris

3 Replies

  • Chris99's avatar
    Chris99
    Advocate III

    Hi Anonymous,

     

    Can you do

     

    Total sales last month = IF

    (

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-1;MONTH ) ) = 0;

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-2;MONTH ) );

       CALCULATE ([Total sales]; DATEADD (Dates[Date];-1;MONTH ) );

     )

     

    or were you hoping for something that would work backwards and find the fisrt non zero value?

     

    Chris

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Chris99

       

      That WOOOOOORKED! Thanks :))

       

      Been struggling for ages!

       

       

       

      • Chris99's avatar
        Chris99
        Advocate III

        Anonymous- Glad to have helped :smileyhappy: