Forum Discussion
Variance Reporting
- 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.
Hi JadenWelch
Could you please provide me with some sample data and output based on your sample data? That would be very helpful. Please remove any sensitive data in advance. Thank you for your time and efforts in advance.
Best Regards,
Yulia Xu
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.
- Anonymous2 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 XuIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.