Rusty Benson
New Member
- Joined
- Jul 25, 2002
- Messages
- 7
Hi
I have 3 columns (Columns A-G have data entered when the row is being used)
I =Due Date
H= Completed Date
L Status which has 3 choices: - Overdue, Completed, In Progress
Cell T1 has Today() entered to get a date to trigger the overdue reference.
Requirements
If Both I & H columns are empty return In Progress in column J (when there is data in the prior columns on the same row)
If Column I Due date has passed the show Overdue in column J
if column H has a completion date entered then show complete In Column J
I have tried using a nested if statement however it doesn't work properly.
IF(I5>0,"complete",IF(H5<$T$1,"overdue","in Progress"))
I have 3 columns (Columns A-G have data entered when the row is being used)
I =Due Date
H= Completed Date
L Status which has 3 choices: - Overdue, Completed, In Progress
Cell T1 has Today() entered to get a date to trigger the overdue reference.
Requirements
If Both I & H columns are empty return In Progress in column J (when there is data in the prior columns on the same row)
If Column I Due date has passed the show Overdue in column J
if column H has a completion date entered then show complete In Column J
I have tried using a nested if statement however it doesn't work properly.
IF(I5>0,"complete",IF(H5<$T$1,"overdue","in Progress"))