deecarrion
New Member
- Joined
- Feb 17, 2016
- Messages
- 5
Hi! I need help.. I have a table that on cell f4 is a due date, g4 is the completed date, a1 is todays date (today func) , now in j4 i want it to read wether the project was complete, past due and if no due date was selected i need j4 to remain blank.
Summary..
If f4 is blank = j4 blank
If g4 has text = j4 says completed
If g4 is blank AND f4>a1 = j4 says past due
Heres my issue... Also need.. If g4 is blank AND f4<a1 = j4 remains blank.
Tried this and if i dont get errora, i wont get the results i want or excel tells me that i have too much request in the same line.. This is what i got so far but iys not working..
Cant get j4 to remain blank when f4 is smaller than a1
=IF(AND((ISBLANK(G4)),F4<$a$1,NOT(ISBLANK(F4))),"PastDue", IF((ISBLANK(F4)),"","Complete"))
Summary..
If f4 is blank = j4 blank
If g4 has text = j4 says completed
If g4 is blank AND f4>a1 = j4 says past due
Heres my issue... Also need.. If g4 is blank AND f4<a1 = j4 remains blank.
Tried this and if i dont get errora, i wont get the results i want or excel tells me that i have too much request in the same line.. This is what i got so far but iys not working..
Cant get j4 to remain blank when f4 is smaller than a1
=IF(AND((ISBLANK(G4)),F4<$a$1,NOT(ISBLANK(F4))),"PastDue", IF((ISBLANK(F4)),"","Complete"))