The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 org2 the value appear in visual but if user dosents select any org from filter the value disappear from visual ? is that possible ?
Thank You!
Solved! Go to Solution.
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.
Hi @Anonymous ,
To create a measure as below.
Measure = IF ( ISFILTERED ( Table1[org] ), SUM ( Table1[value] ), BLANK () )
Thank you
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.