Forum Discussion
Godislove22222
2 years agoFrequent Visitor
Consolidate rows and sum
Good day PowerBI Guru. Newbe here. My data has the following layout. Goal: Remove "Line" by summing FY23, then FY 24 for each office. Then caluate % Difference and have an icon or chart ...
- Anonymous2 years ago
Based on the data you have provided, the value of sox com in 2023 is 0.
so it will returen 0
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
2 years agoNot applicable
1.You can create a measure.
Difference = DIVIDE(SUM('Table'[FY 2024 Plan])-SUM('Table'[FY2023 Plan]),SUM('Table'[FY2023 Plan]))
2.Create a measure to set the icon.
Format = if([Difference]>0,1,0)
3.Put the following field to a matrix visual.
4.Set the conditional formatting of the difference measure, select 'Icon'
5.Set the rule.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.