Hi @OmahaOmaha
I like Skye's suggestion of starting with the =100.
As she pointed out, if you're never reaching the third condition because if the number is greater than 50, it ends with the second condition.
Funnily your condition makes it so that if the completion score is 50 - the calculation shows N/A (because there's no condition).
You can use 2 conditions to fix this
- is Active Dev = 100?
- is Active Dev > 50
IF(
{DE:AD Completion Score}=100,
"Active Dev. Up To Date",
IF(
{DE:AD Completion Score}>=50,
"Active Dev. 50% Complete",
"Active Dev. Less Than 50%"
)
)