![]() |
If Function
I am trying to create a function that tracks invoices and identifies when one
has gone astray. I already have it created a basic formula that says if an invoice in the "Date Received" column was received < 7 days ago say €śOK€ť but if it is 7 days old say €śACTION€ť, but what I want it to do is if there is nothing entered in the €śDate Received€ť Column dont say ok or action just show it as blank (Below). =IF(ISBLANK(C12),"",IF(C12+7<TODAY(),"ACTION","OK" )) I then want it to say that if there is a date in the "Date Sent Column" for it to say "Invoice Sent". Can anyone help? -- Thanks, LK |
If Function
Maybe, for this part:
=IF(ISBLANK(C12),"",IF(C12+7<TODAY(),"ACTION","OK" )) Try: =IF(C12="","",IF(AND(ISNUMBER(C12),C12+7<TODAY()), "ACTION","OK")) -- Max Singapore http://savefile.com/projects/236895 Downloads:18,600 Files:362 Subscribers:60 xdemechanik --- |
All times are GMT +1. The time now is 02:04 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com