The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.