May 22 2023 05:18 AM - last edited on Nov 09 2023 11:09 AM by
Hello!
I have a table where I want to put more emphasize on the values by highlighting them with colours once they reach a certain value.
I want to put it into six categories:
I have tried it by using conditional formating -> colour scales
But it can only display 3 colours. Can anyone tell me how I can add another 3 colours?
Thank you sincerely in advance.
May 22 2023 05:23 AM
May 22 2023 05:44 AM
To add more than three colors to your color scale for conditional formatting in Excel, as noted by Mr. Jan Karel Pieterse in his message, you can use a custom formula.
Here is how you can achieve it:
95-100%: =AND(A1>=0.95,A1<=1)
90-95%: =AND(A1>=0.9,A1<0.95)
85-90%: =AND(A1>=0.85,A1<0.9)
80-85%: =AND(A1>=0.8,A1<0.85)
75-80%: =AND(A1>=0.75,A1<0.8)
<75%: =A1<0.75
Note: Replace A1 with the cell reference of the first cell in your selected range.
By using custom formulas, you can create up to six categories with different colors for each range of values.
May 24 2023 01:04 AM
May 24 2023 01:29 AM
May 24 2023 03:06 AM
SolutionMay 24 2023 04:09 AM
May 24 2023 04:28 AM
May 24 2023 03:06 AM
Solution