Forum Discussion
Anonymous
3 years agoNot applicable
Adding Current Measure with Previous Measure In Power BI
Hi all I am newbie to power Bi Sales is a Calculated Measure. My Requirement Month Sales Required out put Jan-23 200 200 Feb-23 ...
Anonymous
3 years agoNot applicable
Hello Anonymous,
Try this,
Sales 1 = CALCULATE(
SUM([Sales]),
FILTER(
ALL(Table_Name),
Month <= MAX(Month)
)
)
If this helps, mark my post as "Accepted Solution".
Thanks