Countdown by Date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Pls guide me on this matter. I enter formula:

=9/5/2006-TODAY()&" days to go"

it display, 182 days to go
but when the date over, it turn negatif, like '-5 days to go'
How to stop the countdown after the date?
 
=9/5/2006-TODAY()&" days to go"

use an if function

if (9/5/2006-today()>0= 9/5/2006&"days to go","Arrived")

Assuming you have entered the date correctly!

Regards

Dav
 
Something like this maybe:

=IF( TODAY() =DATEVALUE("9/25/2006"), "Arrived", IF(TODAY() >
DATEVALUE("9/25/2006"), "In the past",DATEVALUE("9/25/2006") - TODAY() & "
days to go"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Excel Show Countdown Date 7
countdown timer 5
Expiration Date countdown 2
Countdown formula 6
Time countdown... 4
Working with dates 4
Target Due date and countdown for working days 1
Countdown days & time 1

Back
Top