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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Adidas
Helper I
Helper I

How to retrieve a slicer selection into another table

Hi all,
I'm trying to achieve this with Dax but still no success,
My powerBI report has a table with a list of employees,
and two additional columns of products allocated for each employee.
In each row, the user has to choose between two products for the particular employee: Product A or Product B,
and since the two products have different prices, the bottom total should change accordingly.
unfortunately, the powerBI table visual has no such feature as a row-level checkbox, so I'm looking for a workaround here.
I thought maybe to bring the employee unique list in a separate table,
then build a slicer with checkboxes over it, and write a new measure in the main table that taking ProductB instead of ProductaA whenever the employeeID checkbox is ticked.
here is the desired result, can someone lead me on how to accomplish this?

Adidas_0-1606912526875.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Adidas , Not very clear to me.

 

Try a measure like

 

measure =
var _prd = allselected(product[product])
return
calculate(countrows(employee) , filter(employee, employee[product] in _prd))

 

or try to use treatas

https://docs.microsoft.com/en-us/dax/treatas-function

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

4 REPLIES 4
Adidas
Helper I
Helper I

Thank you all!

amitchandak
Super User
Super User

@Adidas , Not very clear to me.

 

Try a measure like

 

measure =
var _prd = allselected(product[product])
return
calculate(countrows(employee) , filter(employee, employee[product] in _prd))

 

or try to use treatas

https://docs.microsoft.com/en-us/dax/treatas-function

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

Thanks, @amitchandak 
the measure is working great!
however, is there a way to avoid the typical behavior of a power bi slicer
that "no selection" means "all selections"?

Anonymous
Not applicable

Of course, there is. Just use the ISFILTERED function.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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