I need to update an Excel table daily

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

Guest

My question is....and I am not sure it is possible.....but here goes....I
have a table that needs to be reviewed everyday. It is one of those tables
that needs to track the number of days left before a certain event happens.
My question is.....is it possible to have excel update that particular column
each time I open the spreadsheet? Meaning, if I open the spreadsheet today,
November 11th is there a formula that will allow Excel to calculate the
number of days left ? ie (event date minus current date equalling number of
days left) does that even make sense?
 
Not with a formula I dont think, at least not to update anything, but its
quite easily done using VB code with a WorkBook_Open event,
Try posting more detail of what you want it to do,
Regards,
 
Silva

Assuming future event date November 24, 2004 is in A1

In B1 enter =A1-TODAY() & " days to go" returns 13 days to go.

Make sure Tools>Options>Calculation is set to "Automatic".

B1 will update each day, counting down the days to go.

Gord Dibben Excel MVP
 

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

Back
Top