Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I created a slicer like this on PowerBI, but I would like the values to add up as "AND" conditions, rather than as "OR". For instance, I would like the values returned to be those where Chris Gray AND Carlos Grillo are managers, rather than Chris Gray OR Carlos Grillo are managers. How can I do this?
Solved! Go to Solution.
still not sure but try :
Selected Measure Value =
SWITCH(SELECTEDVALUE('Measures for Slicer'[Measure])
, "Managers", [Manager Names]
, BLANK()
)
Selected Measure Value (only for managers) =
// Get the number of managers you selected
VAR SelectedmanagerCount = CALCULATE(COUNTROWS(VALUES(table[managers]))
, ALLSELECTED(table))
VAR output = SUMX (
VALUES( table[manager] ), //Get each manager in the current context
VAR x = ADDCOLUMNS ( //For each manager, set a flag for whether
//there is data for each selected manager
ALLSELECTED ( table ),
"Flag", IF ( NOT (ISBLANK ( [Selected Measure Value] ), 1, 0 )
)
//Count up the number of sales with data for each manager
VAR salesWithDataFormanager = SUMX ( x, [Flag] )
//If the number of managers for the facility matches the number of
//selected managers, include that value, otherwise exclude it.
RETURN
IF ( salesWithDataFormanager = SelectedmanagerCount, [Selected Measure Value] )
)
RETURN output
Hi, you can have multiple selection by pressing CTRL and selecting other values
Hello! Thanks for the suggestion, but doing that only returns the *value "OR" value* results, which is what I am trying to avoid.
still not sure but try :
Selected Measure Value =
SWITCH(SELECTEDVALUE('Measures for Slicer'[Measure])
, "Managers", [Manager Names]
, BLANK()
)
Selected Measure Value (only for managers) =
// Get the number of managers you selected
VAR SelectedmanagerCount = CALCULATE(COUNTROWS(VALUES(table[managers]))
, ALLSELECTED(table))
VAR output = SUMX (
VALUES( table[manager] ), //Get each manager in the current context
VAR x = ADDCOLUMNS ( //For each manager, set a flag for whether
//there is data for each selected manager
ALLSELECTED ( table ),
"Flag", IF ( NOT (ISBLANK ( [Selected Measure Value] ), 1, 0 )
)
//Count up the number of sales with data for each manager
VAR salesWithDataFormanager = SUMX ( x, [Flag] )
//If the number of managers for the facility matches the number of
//selected managers, include that value, otherwise exclude it.
RETURN
IF ( salesWithDataFormanager = SelectedmanagerCount, [Selected Measure Value] )
)
RETURN output
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
10 | |
10 | |
9 | |
7 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
10 |