Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Is there a way to make the line in a line and clustered column chart optional? Right now, I have a calculated measure as the line in the visualization. My current thought process is to somehow make a slicer that asks yes/no or just check/uncheck for the calculated measure to be a line.
Solved! Go to Solution.
You could define a new table Slicer with a single column of two values "Yes" and "No" and then use the selected value to determine whether or not to return a blank for the line measure.
OptionalMeasure = IF ( SELECTEDVALUE ( Slicer[ShowLine] ) = "Yes, [LineMeasure] )
You could define a new table Slicer with a single column of two values "Yes" and "No" and then use the selected value to determine whether or not to return a blank for the line measure.
OptionalMeasure = IF ( SELECTEDVALUE ( Slicer[ShowLine] ) = "Yes, [LineMeasure] )