Mar 8, 2007 #1 mcb999 Programmer Jan 30, 2007 12 US Whats the best way of setting a date field to add 1 year from the current date? Using getDate() set the current date by default so I would imagine its just a matter of adding something between the brackets. Thanks
Whats the best way of setting a date field to add 1 year from the current date? Using getDate() set the current date by default so I would imagine its just a matter of adding something between the brackets. Thanks
Mar 8, 2007 1 #2 monksnake Programmer Oct 14, 2005 2,145 US Select dateadd(yy, 1, getdate()) <. Upvote 0 Downvote
Mar 8, 2007 #3 Jamfool IS-IT--Management Apr 10, 2003 484 GB SELECT DATEADD(yy,1,GETDATE()) Upvote 0 Downvote
Mar 8, 2007 Thread starter #4 mcb999 Programmer Jan 30, 2007 12 US perfect..thanks! Upvote 0 Downvote