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
gerhigrabun
New Member

Slicer

Is there a way where i can have one company always showing and then use the slicer to choose other companies to compare to that one? Right now if im selecting a company on the slicer, it will only let me select that company, not multiple. I can either show one company or all of them.powerbi.PNG

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

Hi @gerhigrabun ,

 

Based on my test, you could create two tables for company selections, please follow below steps.

 

1. For the default company:

AlwaysSelectedCompany = VALUES('Table'[Company])

AlwaysSelectedCompany.PNG

 

2. For all rest compies which are not selected:

ForAnotherCompany = VALUES('Table'[Company])

Apply the following formula to filter pane, set as "=1"

AllOtherCompies = IF(SELECTEDVALUE(AlwaysSelectedCompany[Company])<>MAX('OtherCompanies'[Company]),1)

AllOtherCompies.PNG

3.Then create a measure:

Measure =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        'Table',
        'Table'[Company] = MAX ( 'AlwaysSelectedCompany'[Company] )
            || 'Table'[Company]
                IN ALLSELECTED ( OtherCompanies[Company] )
                    && ISFILTERED ( 'OtherCompanies'[Company] )
    )
)

The final output is shown below:

two slicers.PNG

 Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-eqin-msft
Community Support
Community Support

Hi @gerhigrabun ,

 

Based on my test, you could create two tables for company selections, please follow below steps.

 

1. For the default company:

AlwaysSelectedCompany = VALUES('Table'[Company])

AlwaysSelectedCompany.PNG

 

2. For all rest compies which are not selected:

ForAnotherCompany = VALUES('Table'[Company])

Apply the following formula to filter pane, set as "=1"

AllOtherCompies = IF(SELECTEDVALUE(AlwaysSelectedCompany[Company])<>MAX('OtherCompanies'[Company]),1)

AllOtherCompies.PNG

3.Then create a measure:

Measure =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        'Table',
        'Table'[Company] = MAX ( 'AlwaysSelectedCompany'[Company] )
            || 'Table'[Company]
                IN ALLSELECTED ( OtherCompanies[Company] )
                    && ISFILTERED ( 'OtherCompanies'[Company] )
    )
)

The final output is shown below:

two slicers.PNG

 Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the 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.