Forum Discussion
JadenWelch
2 years agoFrequent Visitor
Variance Reporting
I have a Power BI matrix where I have the field "Scenario" as my Columns, the field "Industry" as my Rows, and two Values, Revenue & Expense, which are both calculated metrics. However, I have enable...
- Anonymous2 years ago
Hi JadenWelch
After my testing, the following methods can achieve the effect you want for your reference:
Create several measures as follow
CurrentBudget = CALCULATE(SUM('Table'[Amount]), FILTER('Table', [Scenario] = "Current Budget"))CurrentForecast = CALCULATE(SUM('Table'[Amount]), FILTER('Table', [Scenario] = "Current Forecast"))VB = [CurrentForecast] - [CurrentBudget]Output:
Best Regards,
Yulia XuIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
JadenWelch
2 years agoFrequent Visitor
Anonymous
Attached is a picture of sample data, along with what it currently looks like. I've also shown an image from excel of what I'm trying to get it to do.
Anonymous
2 years agoNot applicable
Hi JadenWelch
After my testing, the following methods can achieve the effect you want for your reference:
Create several measures as follow
CurrentBudget = CALCULATE(SUM('Table'[Amount]), FILTER('Table', [Scenario] = "Current Budget"))CurrentForecast = CALCULATE(SUM('Table'[Amount]), FILTER('Table', [Scenario] = "Current Forecast"))VB = [CurrentForecast] - [CurrentBudget]
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.