Excel: date+1 year?
Closed
Hello,
I am trying to set up a simple way to let my excel illiterate boss have a simple way of knowing when a list of products need to be updated. So I have the date the product was last update, then the status of the product "up to date" or "needs updating", then the product itself. I want to create a formula so that one year after the date the product was last updated the status of the product changes from "up to date" to "needs updating." Would this be an if statement or conditional formatting issue? How can I say if the date is greater than x plus one year, then change y to say "needs updating" then once the new update is completed the equation continues using the new update date. Any suggestions would be really helpful. Sorry this sounds like a word problem on a test or something. What do you all think?
I am trying to set up a simple way to let my excel illiterate boss have a simple way of knowing when a list of products need to be updated. So I have the date the product was last update, then the status of the product "up to date" or "needs updating", then the product itself. I want to create a formula so that one year after the date the product was last updated the status of the product changes from "up to date" to "needs updating." Would this be an if statement or conditional formatting issue? How can I say if the date is greater than x plus one year, then change y to say "needs updating" then once the new update is completed the equation continues using the new update date. Any suggestions would be really helpful. Sorry this sounds like a word problem on a test or something. What do you all think?
Related:
- Excel: date+1 year?
- Excel mod apk for pc - Download - Spreadsheets
- Gif in excel - Guide
- Kernel for excel - Download - Backup and recovery
- Number to words in excel - Guide
- Excel marksheet - Guide
5 responses
aquarelle
Posts
7180
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
December 19, 2024
491
Jul 28, 2008 at 04:36 PM
Jul 28, 2008 at 04:36 PM
Hi,
Try with this formula where A1 is the cell which contains the date :
Best regards
Try with this formula where A1 is the cell which contains the date :
=IF(TODAY()<EDATE(A1;12);"up to date";"needs updating")
Best regards
aquarelle
Posts
7180
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
December 19, 2024
491
Jul 30, 2008 at 12:01 PM
Jul 30, 2008 at 12:01 PM
Hello,
Did you install all additional macros of excel ?
Did you install all additional macros of excel ?
A few minor syntax errors and I think you will now find this works
=IF(TODAY()>=EDATE(A1,12),"up to date","needs updating")
=IF(TODAY()>=EDATE(A1,12),"up to date","needs updating")