Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have basic knowledge of excel so please bear with me.
I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. Any help pn this is greatly appreciated. Thanks Nic |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Nic,
Due date= Date sent + 5 with cells formatted as Date =A1+5 if A1 has Date sent and for your second query ... =IF(J4<"",IF(J4<TODAY(),"OVERDUE","CURRENT"),"") HTH "Nic" wrote: I have basic knowledge of excel so please bear with me. I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. Any help pn this is greatly appreciated. Thanks Nic |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for your help.
I need the date to display 5 working days from now (eg if it was sent on a Wednesday it will be due on the following Tuesday). The +5 function does not take this into account. Any help on this one? Thanks Nic "Toppers" wrote: Nic, Due date= Date sent + 5 with cells formatted as Date =A1+5 if A1 has Date sent and for your second query ... =IF(J4<"",IF(J4<TODAY(),"OVERDUE","CURRENT"),"") HTH "Nic" wrote: I have basic knowledge of excel so please bear with me. I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. Any help pn this is greatly appreciated. Thanks Nic |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=WORKDAY(A1,5)
Regards, Stefi €žNic€ť ezt Ă*rta: Thanks for your help. I need the date to display 5 working days from now (eg if it was sent on a Wednesday it will be due on the following Tuesday). The +5 function does not take this into account. Any help on this one? Thanks Nic "Toppers" wrote: Nic, Due date= Date sent + 5 with cells formatted as Date =A1+5 if A1 has Date sent and for your second query ... =IF(J4<"",IF(J4<TODAY(),"OVERDUE","CURRENT"),"") HTH "Nic" wrote: I have basic knowledge of excel so please bear with me. I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. Any help pn this is greatly appreciated. Thanks Nic |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
but don't want anything to be displayed if there is nothing in J4
Just add a front error trap for "nothing" in J4: =IF(J4="","",IF(J4<TODAY(),"OVERDUE","CURRENT")) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Nic" wrote: I have basic knowledge of excel so please bear with me. I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. Any help pn this is greatly appreciated. Thanks Nic |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() €žNic€ť ezt Ă*rta: I have basic knowledge of excel so please bear with me. I am setting up a tracking spreadsheet. Three of the columns are date sent, due date and date received. I need the due date to automatically be inserted as 5 working days after the date sent. I don't know the formula to do this. If sent date is in A2, then insert in due date cell =A2+5 Also, I have the following formula in the date received colomn =IF(J4<TODAY(),"OVERDUE","CURRENT") but don't want anything to be displayed if there is nothing in J4. At the moment, the blank cells that haven't been used yet already have the word CURRENT in that column and this is confusing. =IF(ISBLANK(J4),"",IF(J4<TODAY(),"OVERDUE","CURREN T")) Any help pn this is greatly appreciated. Thanks Nic |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pre-1900 dates | Excel Discussion (Misc queries) | |||
entering items on specific dates of year | Excel Discussion (Misc queries) | |||
Need to pull current dates from list w/many dates | Excel Discussion (Misc queries) | |||
conditional formatting overdue dates | Excel Discussion (Misc queries) | |||
conditional formatting overdue dates | Excel Discussion (Misc queries) |