Forum Discussion
HamidBee
3 years agoPower Participant
Why is my DAX not displaying ✅?
Attached please find the .pbix file. I have the following DAX expression:
The problem is the tick never displays. Here is the output whenever I select something:
As you c...
- 3 years ago
I've just solved it. If you put a space just before the tick, it works. Strangest thing ever. Here is what I did:
jgeddes
3 years agoSuper User
From what I can see it may be a result of the table visual containing letters from table 1 so the selectedvalue test should be applied to table 1 letters.
I wrote a quick slicer 3 measure
Slicer3 =
IF (
SELECTEDVALUE(Table1[Letter]) = SELECTEDVALUE(Table2[Letter]),
"yes",//"✅",
"no"//"❌"
)
and get the result
but as soon as I apply the icons in place of the yes/no text I get each line populated with the same icon.
Hope this gets you going in the right direction.
HamidBee
3 years agoPower Participant
I've just solved it. If you put a space just before the tick, it works. Strangest thing ever. Here is what I did: