Hi everyone, I was able to figure out how to produce a running TAT however, I am now running into the problem of stopping the running turnaround time for one of my columns. The short idea is that I want to have an If Statement nested inside my existing formula so that when my F column is not blank or not equal to 0, it will make my E column turn into zero. Here is the sample sheet:
Any help is super appreciated thank you so much!
Book2 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | Date Today | Memo Routed | Memo Approved | Bank credited (date) | Running TAT | TAT | ||||
2 | 2/16/2023 | |||||||||
3 | 2/14/2023 | 3 | ||||||||
4 | 2/13/2023 | 2/15/2023 | 4 | If F is blank or equal to 0 then E should keep calculating for the running TAT | ||||||
5 | 2/9/2023 | 2/12/2023 | 2/14/2023 | 6 | 4 | If F is not blank or not equal to 0 then E should turn to 0 | ||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | A2 | =TODAY() |
E2:E5 | E2 | =IF($B2="","",NETWORKDAYS($B2,$A$2)) |
F3:F5 | F3 | =IF($D3="","",NETWORKDAYS($B3,$D3)) |
Any help is super appreciated thank you so much!