Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
Create a table (which will be hidden in the model) with pairs of (ProductID, Username). Username will be the user's email that they connect with, which you can return using a DAX function, probably Username() or something like this. This is the mapping you want to occur. Then connect Products via ProductID to this table with bi-dir filtering. Then put a slicer on the canvas as you would normally do using the column from Products. Then create a measure
[ProductIsOKToShow] =
var ProductIsOKToShow_ =
NOT ISEMPTY(
filter(
ProductToUserBridgeTable,
ProductToUserBridgeTable[UserName] = USERNAME()
)
)
return
1 * ProductIsOKToShow_
and filter the slicer via Filter Pane where the condition [ProductIsOKToShow] is 1.
@daxer-almighty Excellent, Kudos. Worked! Fantasic, and thanks for the good help.
Create a table (which will be hidden in the model) with pairs of (ProductID, Username). Username will be the user's email that they connect with, which you can return using a DAX function, probably Username() or something like this. This is the mapping you want to occur. Then connect Products via ProductID to this table with bi-dir filtering. Then put a slicer on the canvas as you would normally do using the column from Products. Then create a measure
[ProductIsOKToShow] =
var ProductIsOKToShow_ =
NOT ISEMPTY(
filter(
ProductToUserBridgeTable,
ProductToUserBridgeTable[UserName] = USERNAME()
)
)
return
1 * ProductIsOKToShow_
and filter the slicer via Filter Pane where the condition [ProductIsOKToShow] is 1.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 14 | |
| 8 | |
| 8 | |
| 8 |