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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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