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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
CMSINFO
Frequent Visitor

Conditional formatting for a specific period only

Hi all, I am using conditional formatting as a background colour in each month of the year depending on the value of the field. The problem is that from 2021 I need to change the conditions, i.e., same number could have a different color in 2021, however, I would like to keep the previous colors before 2021, does anybody know if this is feasible?

CMSINFO_0-1618101737842.png

 

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

Hi, @CMSINFO 

What is the name of the chart you are using?

According to your requirement, I think it can be achieved. You can write a measure that uses the IF() function to judge if the date is later than 2021, then used the Switch() function to return color based on value.

You can write a measure like this:

Color=
IF(Year(Max([Date]))=2021,
  Switch(True(),
        [Value]=0,”Green”,
        [Value]>=1&&[Value]<3,”Orange”,
        [Value]>=3,”Red”),
    Switch(True(),
        [Value]=0,”Green”,
        [Value]>=1&&[Value]<5,”Orange”,
        [Value]>=5,”Red”))

Then you can set the conditional format of this chart like this:

v-robertq-msft_0-1618281771823.png

 

Then you can get what you want.

 

If you still have a problem, you can post your sample test pbix file(without sensitive data) and your expected result so that we can help you in advance.

How to Get Your Question Answered Quickly 

Thank you very much!

 

Best Regards,

Community Support Team _Robert 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-robertq-msft
Community Support
Community Support

Hi, @CMSINFO 

What is the name of the chart you are using?

According to your requirement, I think it can be achieved. You can write a measure that uses the IF() function to judge if the date is later than 2021, then used the Switch() function to return color based on value.

You can write a measure like this:

Color=
IF(Year(Max([Date]))=2021,
  Switch(True(),
        [Value]=0,”Green”,
        [Value]>=1&&[Value]<3,”Orange”,
        [Value]>=3,”Red”),
    Switch(True(),
        [Value]=0,”Green”,
        [Value]>=1&&[Value]<5,”Orange”,
        [Value]>=5,”Red”))

Then you can set the conditional format of this chart like this:

v-robertq-msft_0-1618281771823.png

 

Then you can get what you want.

 

If you still have a problem, you can post your sample test pbix file(without sensitive data) and your expected result so that we can help you in advance.

How to Get Your Question Answered Quickly 

Thank you very much!

 

Best Regards,

Community Support Team _Robert 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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

August Carousel

Fabric Community Update - August 2024

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