![]() |
|
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Join Date: Mar 2004
Posts: 45
|
To many IF's, AND's & OR's for me to tackle.
I have the following formula which changes the status if five days have elapsed since the date of authorising to the date received. Date authorised is column B, Date received is column C, Status column D =if((today()-b2>5)*(c2="")=1,"chase","ok") Date authorised date received status. I now have another column A, WHICH IS DATE ACCEPTED. What i would like to do is add to the above formula by saying if date authorised is blank and todays date is five days after the date in column A, then type a message saying " chase authorising officer" if less than five days say OK. Can this be done, thanks in anticipation |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Dec 2003
Location: Oregon, USA
Posts: 9,624
|
something like...
=if(b2="","",if(today()-a2>5,"Chasing authorising officer","OK"))
__________________
Regards, Zack Barresse All Excel Functions (If you would like comments in any code, please say so.) |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|