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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
HenryJS
Post Prodigy
Post Prodigy

Add Cumulative

Hi all,

 

How can I add a column that states IF 'custom' is in the future then add a 15 cumulative total for each row?

 

30 May 2021      15

06 June 2021      30

 

etc

 

 

Capture.PNG

3 REPLIES 3
Fowmy
Super User
Super User

@HenryJS 

You can add the following DAX calculated column:

Cumm = 
IF( 
    Table[Custom] > TODAY() , 
    RANKX( FILTER(Table,Table[Custom] > TODAY() ) , Table[Custom], , ASC) * 15
)

Fowmy_0-1621427811177.png

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

amitchandak
Super User
Super User

@HenryJS , not very clear. Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

Try a new column  like

 

sumx(filter(Table, [custom] <=earlier([custom])),[QTY])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak I want to add a new DAX column that states if Week Ending is in the future then add a cumulative 15 for each week

 

so if week ending is in future each week ending adds 15 cumulatively, 15, 30, 45, 60 etc for each week in future

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.