IF function with Date addition
Solved/Closed
garycrant
Posts
3
Registration date
Sunday September 21, 2014
Status
Member
Last seen
September 25, 2014
-
Sep 21, 2014 at 10:39 PM
garycrant Posts 3 Registration date Sunday September 21, 2014 Status Member Last seen September 25, 2014 - Sep 25, 2014 at 06:41 PM
garycrant Posts 3 Registration date Sunday September 21, 2014 Status Member Last seen September 25, 2014 - Sep 25, 2014 at 06:41 PM
Related:
- IF function with Date addition
- Find function on mac - Guide
- Accessor function c++ - Guide
- Spreadsheet function - Guide
- Agp function - Guide
- Hard drive function - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Sep 23, 2014 at 11:06 AM
Sep 23, 2014 at 11:06 AM
Hi Garycrant,
Not sure where you get the 2 in your formula attempt, but try this:
=IF(C2-B2>4,"Late","Not Late")
Best regards,
Trowa
Not sure where you get the 2 in your formula attempt, but try this:
=IF(C2-B2>4,"Late","Not Late")
Best regards,
Trowa
Sep 23, 2014 at 04:44 PM
Thank you for your response.
I meant +4, sorry, guess I spent so much time looking at numbres it was hard to see straight.
I entered the formula you suggested, and it works!
I have another question along with my initial one: if the Date of arrival (C2) cell is empty, I would like it to have 'Pending' appear.Would that be too many formulas in one function?
Sep 25, 2014 at 10:51 AM
Not at all.
=IF(C2="","Pending",IF(C2-B2>4,"Late","Not Late"))
Best regards,
Trowa
Sep 25, 2014 at 06:41 PM
Thank you again Trowa, you've been a great help!