Forum Discussion
Column/linechart variance
- 5 years ago
Hi Anonymous
In this case, you need to create individual measures for different products. For example:
Variance % A = VAR thisYear = SELECTEDVALUE('Table'[Year]) VAR thisYearRevenue = CALCULATE(SUM('Table'[Revenue]),ALLEXCEPT('Table','Table'[Year]),'Table'[Product]="A") VAR lastYearRevenue = CALCULATE(SUM('Table'[Revenue]),ALL('Table'),'Table'[Year]=thisYear-1,'Table'[Product]="A") RETURN DIVIDE(thisYearRevenue-lastYearRevenue,lastYearRevenue)Change the product name in the measure to create multiple measures for multiple lines in the chart. Here is a pbix file for reference.
Regards,
Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.
Hi Anonymous
In this case, you need to create individual measures for different products. For example:
Variance % A =
VAR thisYear = SELECTEDVALUE('Table'[Year])
VAR thisYearRevenue = CALCULATE(SUM('Table'[Revenue]),ALLEXCEPT('Table','Table'[Year]),'Table'[Product]="A")
VAR lastYearRevenue = CALCULATE(SUM('Table'[Revenue]),ALL('Table'),'Table'[Year]=thisYear-1,'Table'[Product]="A")
RETURN
DIVIDE(thisYearRevenue-lastYearRevenue,lastYearRevenue)Change the product name in the measure to create multiple measures for multiple lines in the chart. Here is a pbix file for reference.
Regards,
Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.
- Anonymous5 years agoNot applicable
Thanks !