cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Anonymous
Not applicable

Conditional Format except slicer particular region

Hi Team,

 

I have created conditional formatting for the below table but If the slicer -> Country ->All then conditional format should be removed.

 

Country - if select 'ALL' then won't be apply ,except all showing conditional format.

logo.JPG

 

Thanks,

K'udt

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

Hi @Anonymous ,

 

From what I understand, do you want the following effect?
If the slicer[country] is not selected, the visual has no conditional formatting changes. If the slicer selects a value, the conditional formatting in the visual changes.

 

If you do, please see my following solution.

1.Create a country table using dax.

Country = DISTINCT('Table'[Country])

vstephenmsft_0-1653986699257.png

The relationship:

vstephenmsft_1-1653986716028.png

 

2.Create a measure for conditional formatting. The ISFILTERED function is used to determine whether the slicer is selected.

Measure = IF(ISFILTERED('Country'[Country]),IF(SUM('Table'[Value])>3,"Yellow","Green"))

 

3.Then comes the most critical point. The slicer puts the country in the ISFILTERED function in the above measure, and the table puts the country field of the main table.

vstephenmsft_2-1653986899661.png

vstephenmsft_3-1653986916269.png

 

4.Set the color under conditional formatting.

vstephenmsft_4-1653987055979.png

 

Now, if the slicer is no selected. No color changes.

vstephenmsft_5-1653987103633.png

If the slicer is selected, color changes.

vstephenmsft_6-1653987137093.png

 

Best Regards,

Stephen Tao

 

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

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

From what I understand, do you want the following effect?
If the slicer[country] is not selected, the visual has no conditional formatting changes. If the slicer selects a value, the conditional formatting in the visual changes.

 

If you do, please see my following solution.

1.Create a country table using dax.

Country = DISTINCT('Table'[Country])

vstephenmsft_0-1653986699257.png

The relationship:

vstephenmsft_1-1653986716028.png

 

2.Create a measure for conditional formatting. The ISFILTERED function is used to determine whether the slicer is selected.

Measure = IF(ISFILTERED('Country'[Country]),IF(SUM('Table'[Value])>3,"Yellow","Green"))

 

3.Then comes the most critical point. The slicer puts the country in the ISFILTERED function in the above measure, and the table puts the country field of the main table.

vstephenmsft_2-1653986899661.png

vstephenmsft_3-1653986916269.png

 

4.Set the color under conditional formatting.

vstephenmsft_4-1653987055979.png

 

Now, if the slicer is no selected. No color changes.

vstephenmsft_5-1653987103633.png

If the slicer is selected, color changes.

vstephenmsft_6-1653987137093.png

 

Best Regards,

Stephen Tao

 

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

 

dhruvinushah
Responsive Resident
Responsive Resident

Hi @Anonymous , K'udt, 
Can you please rephrase your question and include some context to make it easier to understand what conditional formatting logic you have applied and what's not working?









Anonymous
Not applicable

Hi,

Thanks for your reply,

 

Conditional formatting applied below table , in that Slicer -> Country (selected all) -> then conditional format should not apply, if I select Country -> except 'All" then applicale the conditioanl format.

 

Thanks,

K'udt

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors