michelleha
New Member
- Joined
- Jan 10, 2014
- Messages
- 12
Using excel 2013 (2010 at work) I have the following...
<tbody>
</tbody>
Explanation:
Row 4 - Date Received is entered in D, this calculate the required due date in F. If there is going to be a delay in response then "yes" is selected in 0, which calculates the New Due Date in P.
Here is were I get stuck...
1. Q "Notify manager" works when Today=F but how do I get it to take into consideration if a new due date is calculated in P?
2. When the "Notify Manager" is active Admin personal go in and send the email off... but how do I take into consideration weekends.. I want a => function I think...? Thoughts?
3. T "Days Overdue" considers F & S but how do I get it to take into consideration if a new due date is calculated in P?
Thanks heaps!!
D | F | O | P | Q | S | T | |
2 | Date Received | Date Due | Delay required | New Due Date | Notify Manager | Date Closed | Days Overdue |
3 | 11/12/2013 | =IF(ISBLANK(D3),"",D3+14) 25/12/2013 | N/A | N/A | N/A | 26/12/2013 | =DATEDIF(F3,S3,"D") 1 |
4 | 12/12/2013 | =IF(ISBLANK(D4),"",D4+14) 26/12/2013 | Yes | =IF(ISBLANK(O4),"",F4+7) 02/01/2014 | =IF(F4=TODAY(),HYPERLINK("mailto:?subject="&SetUp!$B$25&"&body=" &SUBSTITUTE(SUBSTITUTE(SetUp!$E$26,"$",J6),"@",B6), "Notify Manager"),"") Notify Manager | ?? | |
5 | 12/12/2013 | =IF(ISBLANK(D5),"",D5+14) 26/12/2013 | Yes | =IF(ISBLANK(O5),"",F5+7) 02/01/2014 | =IF(F5=TODAY(),HYPERLINK("mailto:?subject="&SetUp!$B$25&"&body=" &SUBSTITUTE(SUBSTITUTE(SetUp!$E$26,"$",J6),"@",B6), "Notify Manager"),"") Notify Manager | 05/01/2014 | ?? |
<tbody>
</tbody>
Explanation:
Row 4 - Date Received is entered in D, this calculate the required due date in F. If there is going to be a delay in response then "yes" is selected in 0, which calculates the New Due Date in P.
Here is were I get stuck...
1. Q "Notify manager" works when Today=F but how do I get it to take into consideration if a new due date is calculated in P?
2. When the "Notify Manager" is active Admin personal go in and send the email off... but how do I take into consideration weekends.. I want a => function I think...? Thoughts?
3. T "Days Overdue" considers F & S but how do I get it to take into consideration if a new due date is calculated in P?
Thanks heaps!!