The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Please help! I would like a measure that gets me the cumulative total year on year.
Thank you
Solved! Go to Solution.
Hi, @ronaldt5 ;
Base on my understand , you could create a measure .
Measure =
CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),[name]=MAX('Table'[name])&&[Date]<=MAX('Table'[Date])))
Or
percent% =
var _result=
DIVIDE(SUM('Table'[value]),
CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),[name]=MAX('Table'[name])&& YEAR([Date])=YEAR(MAX('Table'[Date]))-1)))-1
return IF(_result<>-1,_result)
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @ronaldt5 ;
Base on my understand , you could create a measure .
Measure =
CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),[name]=MAX('Table'[name])&&[Date]<=MAX('Table'[Date])))
Or
percent% =
var _result=
DIVIDE(SUM('Table'[value]),
CALCULATE(SUM('Table'[value]),FILTER(ALL('Table'),[name]=MAX('Table'[name])&& YEAR([Date])=YEAR(MAX('Table'[Date]))-1)))-1
return IF(_result<>-1,_result)
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@ronaldt5 Maybe:
Measure =
VAR __Year = MAX('Table'[Year])
VAR __Today = TODAY()
VAR __Date = DATE(__Year,MONTH(__Today),DAY(__Today))
VAR __Table = FILTER(ALLSELECTED('Table'),[Date]<=__Date)
RETURN
SUMX(__Table,[Value])