This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello All,
Is there anyone to help me on my existing report which I have shared the link:https://drive.google.com/open?id=1MLwvohbKCbJAj1_xJp1lTegJmQ60Ccgs its bit urgent if you help me on my .pbix file and shared with me.
Need solution:
You can see in this visual the filter on scenario above doesn't get applied. Can you find a solution so that the running totals and the amounts show the same result but the use can switch the base scenario? E.g. if "actual" in the filter above is selected only the actuals are shown. If budget just "budget" and in case there is a new scenario like "forecast" that is shown as the base scenario + "Budget"
Target Result If only "Actual" Is selected but we still want both if "budget" is also selected in filter above
Thanks in advance.
Aamir
Solved! Go to Solution.
In your scenario, you created one measure for each "scenario" and you have added the "scenario" as filter in calculation. When you put both measures into a chart, it will never take the selection in slicer.
For your requirement, you only need one measure with "scenario" filter removed.
Total Report Values = if(sum(Xero_Finance_Data[ClassKey])=0,CALCULATE([Report Value]),CALCULATE([Report Value],
FILTER (
ALL ('Calendar'),
'Calendar'[Date]<= MAX ('Calendar'[Date])
)
))
Then you should put 'Xero_Finance_Data'[Scenario] into Legend in your chart.
Regards,
In your scenario, you created one measure for each "scenario" and you have added the "scenario" as filter in calculation. When you put both measures into a chart, it will never take the selection in slicer.
For your requirement, you only need one measure with "scenario" filter removed.
Total Report Values = if(sum(Xero_Finance_Data[ClassKey])=0,CALCULATE([Report Value]),CALCULATE([Report Value],
FILTER (
ALL ('Calendar'),
'Calendar'[Date]<= MAX ('Calendar'[Date])
)
))
Then you should put 'Xero_Finance_Data'[Scenario] into Legend in your chart.
Regards,
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 33 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |