March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
Hi,
I need to select 2 values from slicer to populate the correct value.
How to modify the measure to the below selectedvalue?
[Product] | Slicer [Country] | Slicer [ Name] |
Product A | US | Product A |
Product B | US | Product B |
Product C | Canada |
|
Measure =
IF(
ISFILTERED(Slicer[Name]),
SWITCH(
SELECTEDVALUE(Slicer[Name]),
"Product A",CALCULATE(MAX([Value]),FILTER('Table',[Product]="Product A")),
"Product B",CALCULATE(MAX([Value]),FILTER('Table',[Product]="Product B")),
"Product C",CALCULATE(MAX([Value]),FILTER('Table',[Product]="Product C"))),
CALCULATE(MAX([Value]),FILTER('Table',[Product]="All")))
Solved! Go to Solution.
Hi @PBI_newuser,
Perhaps you can try the following measure formula if it meets your requirement:
Measure =
CALCULATE (
MAX ( [Value] ),
FILTER (
ALLSELECTED ( 'Table' ),
IF (
ISINSCOPE ( Slicer[Country] ),
[Country] IN VALUES ( Slicer[Country] ),
[Country] = "All"
)
&& IF (
ISINSCOPE ( Slicer[Name] ),
[Name] IN VALUES ( Slicer[Name] ),
[Name] = "All"
)
)
)
Regards,
Xiaoxin Sheng
Hi @PBI_newuser,
Perhaps you can try the following measure formula if it meets your requirement:
Measure =
CALCULATE (
MAX ( [Value] ),
FILTER (
ALLSELECTED ( 'Table' ),
IF (
ISINSCOPE ( Slicer[Country] ),
[Country] IN VALUES ( Slicer[Country] ),
[Country] = "All"
)
&& IF (
ISINSCOPE ( Slicer[Name] ),
[Name] IN VALUES ( Slicer[Name] ),
[Name] = "All"
)
)
)
Regards,
Xiaoxin Sheng
@PBI_newuser , Try a measure like
Measure =
IF(
ISFILTERED(Slicer[Name]) || ISFILTERED(Slicer2[Name]) ,
CALCULATE(MAX([Value]),FILTER('Table','Table'[Product] in allselected(Slicer[Name]) && 'Table'[COUNTRY] in allselected(Slicer2[Name]) )))
@PBI_newuser , Not able to relate what is raw data, What are the slicers? Are slicer independent so we need handle. What is final outcome needed
@amitchandak this is an issue arised from the below topic.
https://community.powerbi.com/t5/Desktop/Slicer-for-all-products/m-p/1488926#M618213
I have 2 slicers for user to select which are "Country" and "Name".
How can I include these 2 fields in the "SELECTEDVALUE" function?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |