Lots of different ways to handle this one. Similar approach using measures and Rules conditional formatting:
Fully Allocated Single Color =
IF( [% Allocated] = 1, 1, 0 )
And if you care about the distinction between < 100% and >100%:
Fully Allocated Dual Color =
SWITCH( TRUE(),
[% Allocated] = 1, 1,
[% Allocated] < 1, 0,
2
)
- Brian
eDNA Forum - Labor Not 100 Percent.pbix (89.4 KB)