Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
mdaamirkhan
Post Prodigy
Post Prodigy

Need help on my existing report?

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

1 ACCEPTED SOLUTION
v-sihou-msft
Microsoft Employee
Microsoft Employee

@mdaamirkhan

 

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,

View solution in original post

1 REPLY 1
v-sihou-msft
Microsoft Employee
Microsoft Employee

@mdaamirkhan

 

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,

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.