Product: LABELVIEW, CODESOFT
Version: All Versions
|
DateOffset(<<date>>, <<offset>>, <<offsetUnit>>, <<changeMonth>>)
Example:
DateOffset("26/06/2012",1,"d",1) will return 27/06/2012
-OR-
DateOffset(today(),1,"D", 0)
Example: Formula with a date data source.
Create a date variable name Date0 with the date of the day, for example 26/06/2012. You should ensure that date variable is in default system format (otherwise you can use DateValue() function to get the date value from the date variable).
DateOffset(Date0,1,"D", 0) will return 27/06/2012
|