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
Yoshimitsu411
Resolver I
Resolver I

DAX Month Cummulative using SUMX RANKX

Hello

 

I am trying to work out the cumulative amounts for each month using the following dax queries with Rankx.

 

Month Numbers = 
SWITCH([Total Sales Ranking by Month],
"JAN", 1,
"FEB", 2,
"MAR", 3,
"APR", 4,
"MAY", 5,
"JUN", 6,
"JUL", 7,
"AUG", 8,
"SEP", 9,
"OCT", 10,
"NOV", 11,
"DEC", 12,0)

 

Cumulative Sales by Month Number = 
var monthNos = [Month Numbers]
RETURN
SUMX(
    FILTER(
        SUMMARIZE(
            'Calendar', 'Calendar'[Month],
            "Sales", [Total Sales],
            "Sales Ranking", RANKX(ALL('Calendar'[Month]), [Total Sales], , ASC)
        ),
        [Sales Ranking] >= monthNos
    ),
    [Sales]
)

 

But I end up with the same values in both the Total Sales and Cumulative columns. What am I doing wrong? 

 

TotalYTD Incorrect4.PNG

 

Thanks

Yoshi

2 REPLIES 2
YukiK
Impactful Individual
Impactful Individual

If you're looking to do cumulative sum based on column that is not date, you may find this helpful: https://community.powerbi.com/t5/Desktop/Cumulative-SUM-using-Rank-NOT-Dates/m-p/170623

amitchandak
Super User
Super User

@Yoshimitsu411 , As you have date and you want a yearly total then you can use datesytd

 

example

 

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

For Cumulative with help from date table 

 

 

Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))

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.