Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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?
Solved! Go to Solution.
@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
Thank you all!
@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
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"?
Of course, there is. Just use the ISFILTERED function.
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |