Countdown based on two columns

Mikeymike_W

Board Regular
Joined
Feb 25, 2016
Messages
171
Hi All,

I'm looking for a formula that will create a countdown so my team know how long they have to review certain data.

All cases need to be reviewed in four working days at the latest.
Column A contains the date & Time the case was submitted.
Column B is for the initials of the person reviewing the case, so if it is blank then it needs to be done.

I would like a visible countdown which will show the number of days left before the next case reaches its deadline, for example:

Current Date & Time: 30 Nov 2016 09:00

Column A Column B
28 Nov 2016 14:00
27 Nov 2016 13:00 TP
26 Nov 2016 09:56 MW
26 Nov 2016 10:00

So ideally the rows which contain initials in column B would be ignored.
The formula would then find the date closest to the 4 working day deadline and display the result, in this case 0 Days 1 Hour (or a similar format, even decimal places of a working day would be fine.

Hope I've included enough details and thanks in advance for your help and support,

Mike
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Try this formula, assuming it's in row 3:

Code:
=CONCATENATE(TEXT((A3+4)-NOW(),"d")," Days ",TEXT((A3+4)-NOW(),"h")," Hours")
 
Upvote 0

Forum statistics

Threads
1,215,829
Messages
6,127,130
Members
449,361
Latest member
VBquery757

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