I am trying to write an expression and having trouble. I get the first part of my arguments correct but when I try to add the third I run into trouble. Here is the first part of the expression:
This works correctly. When I try and add the last bit it does not work. Here is what I am trying to add
Can anyone help me.
Code:
=IIf([completedate]>"",
"Complete",
IIf(
IsNull([CompleteDate]) And ([DueDate]<Date()),
"Overdue",
""
)
)
IIf([ReviewDate]<= Date(),"In Process","")Can anyone help me.
Comment