help with countdown clock formula

buddy1

New Member
Joined
Jan 27, 2015
Messages
3
boss is on my back about creating a formula that will take a date and countdown from a month (date-30days). this needs to be a running clock, something that the status can be checked every day. i have never had to do something like this before and am in panic mode. can anyone help??
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Explain, what date do you want as the start date?


ok, sorry. what we are doing is looking for scaffolds that are up for inspection. we will enter the date that it was inspected and 30 days from that inspection date we will need to do it again. we have over 1700 scaffolds up now. what we are looking for is a countdown formula that will take that inspection date and count down from 30 days, when it hits 0 we will know its up for another inspection. thank you for showing interest.
 
Upvote 0
Something like - change ref A1 to cell containing date
=IF((A1+30)-NOW()<=0,"Overdue",(A1+30)-NOW())

Format cell with this formula as dd:hh:mm.

Note you will need to refresh sheet to update time left.
 
Upvote 0
Maybe overkill! No need to format cell -
=IF((A1+30)-NOW()<=0,TEXT(NOW()-(A1+30),0)&" Days Overdue","Due in "&TEXT((A1+30)-NOW(),"dd")&" Days")
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,267
Members
449,149
Latest member
mwdbActuary

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