Need help with a If statement for a text field

J

Jonathon

I need a formula that I can drop into a text field that will return me
"Yellow" if the work is due within 7 days and less than 50% complete.
Anybody have anything for this. Thank you in advance!

Jonathon
 
J

Jack Dahlgren MVP

Something like this should work.
Check the field names and syntax as I'm typing without opening project.

iif(and(([finish]-now()<7), [%complete]<50,"Yellow","")

-Jack
 
Top