Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

Using Google Doc's spreadsheet program, I'd like to do some simple date math. For example, given TODAY() add 7 days. I don't see any functions to do it, and some quick stabs in the dark didn't pan out.

Does anyone know if this is possible?

Cheers.

share|improve this question

1 Answer

up vote 9 down vote accepted

You can add days to a date in a Google spreadsheet like this:

DATE(2010, 12, 01) + 5

Works with TODAY() as well:

TODAY() + 7
share|improve this answer
How can you do this but take only workdays into account? (exclude weekends?) – Alfie Feb 21 at 21:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.