Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Black_magic100
Helper III
Helper III

How to compare two values in a clustered column chart?

Right now I have one filter to adjust my store location and show the sum of a single column (sales) in a related table aggregated by month.  

 

I am using bookamrks to show and hide visuals.  I need to make it so that when I select this bookmark showing the column chart, it displays a SECOND filter that will allow a user to add an adjacent bar column, but I only want it to show a value if they select something (basically have it default to no values selected).

 

Is this possible? 

 

TL;DR - need a clustered column chart to add an additional bar if a value is selected in a second slicer to compare the two values

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @Black_magic100,

 

Maybe you can try to write a measure to compare with current row content and control specific type of records visible property. Drag this measure to visual level filter and filter 'Y' result.

Tag =
IF (
    COUNTROWS ( ALLSELECTED ( T3 ) ) <> COUNTROWS ( ALL ( T3 ) ),
    "Y",
    IF ( FIRSTNONBLANK ( T3[Name], [Name] ) = "ABCD", "N", "Y" )
)

Notice: if no filter effect applied on source table, data label 'ABCD' will be hide.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @Black_magic100,

 

Maybe you can try to write a measure to compare with current row content and control specific type of records visible property. Drag this measure to visual level filter and filter 'Y' result.

Tag =
IF (
    COUNTROWS ( ALLSELECTED ( T3 ) ) <> COUNTROWS ( ALL ( T3 ) ),
    "Y",
    IF ( FIRSTNONBLANK ( T3[Name], [Name] ) = "ABCD", "N", "Y" )
)

Notice: if no filter effect applied on source table, data label 'ABCD' will be hide.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.