Real time day counter

ETMG ASHLEY

New Member
Joined
Jun 21, 2019
Messages
2
Hello,
I am trying to set a formula that will count days from a start date (or submitted date), up until I enter a received date. I need it to count days, but stop counting and leave the # of days in that column after I have entered that received date. I have tried many formulas, but I can't actually get one to show a daily count just the ending # of days after the stop date is entered.

This is what I have:
Column B is my Input date
Column F is my received date
Column G is my daily count.

The formula I currently have is :
[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]=IF(AND(B12<>"",F12<>"")=TRUE,NETWORKDAYS(B12,TODAY(),2),"")

This has my days off by 2 so then I tried NETWORKDAYS.INT and I couldn't get that to work at all. Even when coping this into all cells, I still only get a count once the received date is entered.

Thanks in advance for your assistance.
Ashley

[/FONT]
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
This did work for the day count to show, but the days aren't calculating correctly. Maybe that is because I didn't say that I also need to include 7 days per week. I copied this down and once I hit line 18 I received 279 days, the input date was 5/29/19. This is similar to what I kept receiving earlier after googling and youtubing for a bit.
 
Upvote 0
If you need to include 7 days per week, this make the formula a bit simpler:

=IF(B12="","",IF(F12="",TODAY(),F12)-B12+1)
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,739
Members
448,989
Latest member
mariah3

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