Feb 05, 2021 09:06 AM
I’m currently using the following formula for tracking Project Health: IF({FOC (Current)}<TODAY(),“LATE!”,“ON TARGET”)
however there are times when the “FOC (Current)” date field is appropriately blank. Right now it’s labeling it as “Late” but I need it to show “No FOC” instead.
I can’t seem to make the multi-IF’s to work. Thanks in advance!
Solved! Go to Solution.
Feb 07, 2021 08:29 AM
Hi @Shawntel_Cote - you need a nested IF statement here:
IF(
NOT({FOC (Current)}),
'No FOC',
IF(
{FOC (Current)} < TODAY(),
'LATE',
'ON TARGET'
)
)
So we first check if {FOC Current} has no value or is blank. If it is blank, then return “No FCO”. If it isn’t blank, then check if the date is earlier than today - if so later, otherwise on target.
Feb 07, 2021 08:29 AM
Hi @Shawntel_Cote - you need a nested IF statement here:
IF(
NOT({FOC (Current)}),
'No FOC',
IF(
{FOC (Current)} < TODAY(),
'LATE',
'ON TARGET'
)
)
So we first check if {FOC Current} has no value or is blank. If it is blank, then return “No FCO”. If it isn’t blank, then check if the date is earlier than today - if so later, otherwise on target.
Feb 08, 2021 03:21 AM
works great, thank you!