Countdown Clock Formula?

thelostscott

Board Regular
Joined
May 7, 2010
Messages
226
Hi all,

I'm wanting to set-up a Clockdown clock formula to show how many working hours are left between 20/05/2011 17:00:00 and =NOW().

Any ideas of how to go about this?

If I have a working day start-time of 08:30:00 and a finish time of 17:00:00 I can work that out just for today however it won't change the hours remaining just by changing the date?

Many thanks!
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
That'd just be the number of working hours for today, plus (17:00-8:30) times the number of working days up to 20/05/2011. Like:

=((TODAY()+"17:00")-NOW())+("17:00"-"08:30")*(NETWORKDAYS(TODAY(),DATE(2011,5,20),Holidays)-1)

... asssuming that you a named range for holidays, if you need it ( otherwise remove that ).

By the way, NETWORKDAYS is part of the Analysis Toolpak, which you may need to Add-In ( not so, in 2007 though ).
 
Upvote 0

Forum statistics

Threads
1,224,564
Messages
6,179,543
Members
452,924
Latest member
JackiG

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