Forum Discussion
Anonymous
7 years agoNot applicable
Hide line from line chart visual
Hello My Question is how i can hide line from line chart visual if user dosent select any thing form filter? from the attached picture what i am looking for is : if user select org1 or o...
- 7 years ago
Hi,
You could create this measure, replace the table and column with your own
HideVisual = IF(HASONEFILTER(Table[SlicerColumn]),1,2)
Then add it to the visual filters and set it to is 1.
- 7 years ago
Hi Anonymous ,
To create a measure as below.
Measure = IF ( ISFILTERED ( Table1[org] ), SUM ( Table1[value] ), BLANK () )
v-frfei-msft
Community Support
7 years agoHi Anonymous ,
To create a measure as below.
Measure = IF ( ISFILTERED ( Table1[org] ), SUM ( Table1[value] ), BLANK () )
Anonymous
7 years agoNot applicable
Thank you