Forum Discussion
ADP007
4 years agoHelper IV
MAtrix Filtering a Scatter
Hi all, In my dashboard I have a table visual with some items. When I click on a row of the table it filters a scatter visual. This is exactly what I need but how can I show no values in the scat...
- 4 years ago
ADP007 , Create a card visual on top of scatter visual and use conditional formatting for both background color and font
if(isfiltered(Table[Column]), "FFFFFF00", "FFFFFF")
In conditional formatting use field value option and use above measure
amitchandak
4 years agoSuper User
ADP007 , Create a card visual on top of scatter visual and use conditional formatting for both background color and font
if(isfiltered(Table[Column]), "FFFFFF00", "FFFFFF")
In conditional formatting use field value option and use above measure
- ADP0074 years agoHelper IV
Hi amitchandak, thanks for your reply. I"ll accept it as a solution but I adapted it a bit.
Check Filtered = IF(ISFILTERED('table'[KPI]), "Y", "N")Then I used the measure in the visual filter option "Check Filtered = Y"Cheers