Forum Discussion
Jane_D
2 years agoRegular Visitor
Dashboard showing data when none is selected.
Greetings everyone. I need help on this. As you guys can see below, I selected no students from the slicer. But the visual is still showing me the data. I need it to be blank (shows no data at al...
- 2 years ago
Has been solved ✔️
Kishore_KVN
Solution Sage
2 years agoHello Jane_D ,
While creating the values for that calculation, use SELECTEDVALUE DAX function and make blank if nothing is selected.
For example you can write your calculation as below:
IF(SELECTEDVALUE('Table'[Studen]) = BLANK(), BLANK(), Your_Calculation)
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Jane_D
2 years agoRegular Visitor
But theres no calculation for the visuals. Like the student name, even when I selected no student, it still showed me 'Adam' there. I use a card visual for it so theres no calculation.