Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi BI community,
I have to show cumulative data - sales per month for whole year. I have 2 categories "Won" and "In progress". The problem is that from September I do not have any "won" anount and the same from November for "In Progress".
How I can copy cumulative data from the last month and show it for next month if I haven't amonut of date in next month for different categories?
Solved! Go to Solution.
Sorry for waysting your time. Solved by myself.
Maybe will be usefull for someone.
Won_cumulative = CALCULATE(SUM(Acc_Opp[revenue), FILTER(FILTER(ALLSELECTED(Acc_Opp),Acc_Opp[Status] = "1.Won"),
Acc_Opp[closedate] <= MAX(Months[EndDate])))
same for another category.
Sorry for waysting your time. Solved by myself.
Maybe will be usefull for someone.
Won_cumulative = CALCULATE(SUM(Acc_Opp[revenue), FILTER(FILTER(ALLSELECTED(Acc_Opp),Acc_Opp[Status] = "1.Won"),
Acc_Opp[closedate] <= MAX(Months[EndDate])))
same for another category.