I have created a semi circle donut dashboard using the following table and formulas. to date this has worked because the raw data has been manually entered and our teams are using a forcing function of entering 0.25, 0.5, 0.75 or 1. The semi circle is dynamic and acts like a speedometer showing a particle color and point in the curve dependent on the number.
In order to make this work if one cell in a row has a number the others show zero (using a 0.0001 placeholder) which keeps the dashboard colors fixed
=IF(Utilization = 0.25, Utilization, 0.0001)
=IF(Utilization = 0.5, Utilization, 0.0001)
=IF(Utilization = 0.75, Utilization, 0.00001)
=IF(Utilization = 1, Utilization, 0.0001)
I need to move to a more dynamic formula that allows each formula to look for a range of numbers and if its not within that range it should display zero (0.00001). The row can not have two cells with numbers in it
I have tried a number of different iterations using I/AND, IF/OR, CONTAINS, and can not find a solution that works. Conceptually below is what I want to get to
=IF(AND(Utilization > 0.5, Utilization < 0.75, Utilization, 0.00001))
with the following ranges
0 to 0.49 RED
0.5 to 0.74 YELLOW
0.75 to 0.80 GREEN
0.81 to 1 RED