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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
mjmjn2611
Frequent Visitor

Dynamic measure based on the selected value of the slicer

Hi, 

 

I want to create a dynamic measure where when I choose the value from the slicer, the row that contains the data from slicer with have an updated formula, other will have another formula. 

 

For example:  

If I choose product A, then the sales for product A would be calculated as 100 + sum(Sales) 

Other products 200 + sum(Sales)

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @mjmjn2611 ,

 

To my knowledge, you need to create a new table for slicer:

 

ForSlicer = VALUES('Table'[Product])

 

Then please try this:

 

Result = IF( MAX('Table'[Product]) in ALLSELECTED(ForSlicer[Product]),100+SUM('Table'[Sales]), 200+SUM('Table'[Sales]))

 

The final output is shown below:

dynamic sales.gif

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @mjmjn2611 ,

 

To my knowledge, you need to create a new table for slicer:

 

ForSlicer = VALUES('Table'[Product])

 

Then please try this:

 

Result = IF( MAX('Table'[Product]) in ALLSELECTED(ForSlicer[Product]),100+SUM('Table'[Sales]), 200+SUM('Table'[Sales]))

 

The final output is shown below:

dynamic sales.gif

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@mjmjn2611 , Try a measure

if(countx(filter(Table, Table[Product] = "Product A"),[Product]) >0 , 100 + sum(Sales) , 200 + sum(Sales) )

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

@amitchandak 

Thank you for your solution. 

 

The name of the product is not constant, I get it from the slicer. I am using Selectedvalue(slicer) to get the value for the product name. It doesn't work. 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Solution Authors
Top Kudoed Authors