Forum Discussion
Anonymous
7 years agoNot applicable
Table Visualisations blank until something selected in a slicer
I have a slicer to filter customer names and I have a table visual which displays columns associated with the customer when nothing is selected on the slicer the table displays all the values for all...
- 7 years ago
Hi Anonymous,
Please new a measure:
Measure1 = CALCULATE ( IF ( ISFILTERED ( TB1[Customer] ), 1, 0 ), ALLSELECTED ( TB1 ) )
Add this measure to visual level filters, and set its value to 1.
Best regards,
Yuliana Gu
v-yulgu-msft
7 years agoMicrosoft Employee
Hi Anonymous,
Please new a measure:
Measure1 = CALCULATE ( IF ( ISFILTERED ( TB1[Customer] ), 1, 0 ), ALLSELECTED ( TB1 ) )
Add this measure to visual level filters, and set its value to 1.
Best regards,
Yuliana Gu
Raymond090576
2 years agoFrequent Visitor
thank you so much