Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Calculate Accumulative Sum of Sales for 12 months from First Purchase Date

Hi guys

 

I´m fairly new to DAX and I´m trying to add the sales of each customer, cumulative sales, from their First Purchase date in either a Calculated Column or a Calculation, to show it in a table with columns or "buckets" of 12M each, kinda like the attached image.  

Sales12.jpg

I´ve been trying but have not been able to show the cumulative sales:

 

Revenue 12 month = CALCULATE(

    SUM('Transaction'[Subtotal]),

    DATESINPERIOD('Transaction'[First Order Date],

        MAX('Transaction'[First Order Date])

        ,+364,

        DAY))

 

Thanks in advance.

 

Roberto-A06

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],Min(Sales[Sales Date]),12,MONTH))

 

With a date table

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184


Appreciate your Kudos.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],Min(Sales[Sales Date]),12,MONTH))

 

With a date table

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184


Appreciate your Kudos.

Greg_Deckler
Super User
Super User

@Anonymous  - You should just be able to do this:

Accumulative 12M Sales =
  VAR __Customer = MAX('Table'[Cust #])
  VAR __FirstOrderDate = MAX('Table'[First Order Date])
  VAR __12MonthsEOM = EOMONTH(__FirstOrderDate,12)
  VAR __12MonthsDate = DATE(YEAR(__12MonthsEOM),MONTH(__12MonthsEOM),DAY(__FirstOrderDate))
RETURN
  SUMX(FILTER(ALL('Table'),[Cust #] = __Customer && [Order Date] >= __FirstOrderDate && [Order Date] <= __12MonthsDate),[Subtotal])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors