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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Tlotly
Helper V
Helper V

Dynamic measure results based on a slicer selection

Hi All

 

I'm trying to create a measure (% of budget)that will give different results based on which slicer is selected. I have 3 different slicers i.e. Region, Zone and Brach all of which use different budgets. So for example if I select a Branch my calculation needs to be:

   sum([Nr.of Groups])*0.07  and if I select Region it needs to be: sum([Nr.of Groups])*0.12

 

budgets

AreaBudget%
Region 0.12
Zone0.07
Branch

0.07

 

slicers

Tlotly_0-1636984187517.png

 

Can you please help on how to achieve this?

 

Thank you

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Tlotly , do you have filter which return region , Zone and branch if yes then you measure will be

 

Switch( Selectedvalue(Table[Type], "Region"),

"Region", sum([Nr.of Groups])*0.12,

"Branch",sum([Nr.of Groups])*0.07,

sum([Nr.of Groups])

)

 

If this should be based on the selected value of three different slicers, then you need to use isfiltered

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Tlotly
Helper V
Helper V

@amitchandak thank you so much. I used ISFILTERED as my slicers are different and it's working: Here is DAX:

IF(ISFILTERED(AreaDetails[Branch Name]),DISTINCTCOUNT(Arrears[Group Nr]) *0.07,
IF(ISFILTERED(AreaDetails[Region Name]),DISTINCTCOUNT(Arrears[Group Nr]) *0.12,
IF(ISFILTERED(AreaDetails[Zone Name]),DISTINCTCOUNT(Arrears[Group Nr]) *0.12,
DISTINCTCOUNT(Arrears[Group Nr]) *0.12))
)

 

amitchandak
Super User
Super User

@Tlotly , do you have filter which return region , Zone and branch if yes then you measure will be

 

Switch( Selectedvalue(Table[Type], "Region"),

"Region", sum([Nr.of Groups])*0.12,

"Branch",sum([Nr.of Groups])*0.07,

sum([Nr.of Groups])

)

 

If this should be based on the selected value of three different slicers, then you need to use isfiltered

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors