Forum Discussion
hidden graphic
I set the v-level filter(selected='Y') however the table displays all items when no any item selected in the slicer.
Can you be more specific?
Hmm that is probably because you are filtering by user in the table, so for each row of the table the filter context means that one user is selected and the measure evaluates to Y. Do you have some other user-specific field (like UserID) that you aren't displaying in the table? If so, you can change your measure to evaluate whether that has one value and it should work.
You could also change your measure to something like the following to force PowerBI to look at the broader filter context of Users rather than row-by-row in the table:
=if(calculate(distinctcount([User]),allselected([User]))=1,"Y","N")