How to Stop Running Turnaround Time

emirahuhu

New Member
Joined
Feb 6, 2023
Messages
5
Office Version
  1. 365
Platform
  1. Windows
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:

Book2
ABCDEFGH
1Date TodayMemo RoutedMemo ApprovedBank credited (date)Running TATTAT
22/16/2023 
32/14/20233 
42/13/20232/15/20234 If F is blank or equal to 0 then E should keep calculating for the running TAT
52/9/20232/12/20232/14/202364If F is not blank or not equal to 0 then E should turn to 0
Sheet1
Cell Formulas
RangeFormula
A2A2=TODAY()
E2:E5E2=IF($B2="","",NETWORKDAYS($B2,$A$2))
F3:F5F3=IF($D3="","",NETWORKDAYS($B3,$D3))



Any help is super appreciated thank you so much!
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Fulfil your two condition below,
1) If F is not blank or not equal to 0 then E should turn to 0
2) If F is blank or equal to 0 then E should keep calculating .............

Formula at Range E3
=IF($F3<>"",0,IF($F3<>0,0,IF($B3="","",NETWORKDAYS($B3,$A$2))))
 
Upvote 1
Solution
Hi justupto! Thank you so much for this. I ran into a problem with the Running TAT no giving me any numbers but your solution gave me the idea on how to make the running be 0 or blank if there was a number on the TAT!

Thank you so much! Here was the formula I ended up with:

=IF($F3<>"",0,IF($F3<>0,0,IF($B3="","",NETWORKDAYS($B3,$A$2))))

Wonderul help and your solution was such a helpful building block!
 
Upvote 0
Hi justupto! Thank you so much for this. I ran into a problem with the Running TAT no giving me any numbers but your solution gave me the idea on how to make the running be 0 or blank if there was a number on the TAT!

Thank you so much! Here was the formula I ended up with:

=IF($F3<>"",0,IF($F3<>0,0,IF($B3="","",NETWORKDAYS($B3,$A$2))))

Wonderul help and your solution was such a helpful building block!
Oops, pasted the wrong formula HAHAHA here was the final one I used: =IF($F4<>"",0,IF($B4="","",NETWORKDAYS($B4,$A$2)))
 
Upvote 0
Oops, pasted the wrong formula HAHAHA here was the final one I used: =IF($F4<>"",0,IF($B4="","",NETWORKDAYS($B4,$A$2)))
You are welcome.

I am not sure how to use NETWORKDAYS or idea on TAT.
I only share my experience on "if the value is Zero or blank" or else in formula ^.^
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,189
Members
452,616
Latest member
intern444

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top