subMonth
This topic describes the syntax and usage of the subMonth function in Zoho Creator .
Description
The subMonth function returns a date-time value after subtracting the specified number of months.
Syntax
<date-time>.subMonth(int)
(or)
subMonth(date-time, int)
// this format is supported only in the free flow scripting mode of Script builder.
The subMonth function syntax has the following arguments.
date-time - Required. The date-time value from which you are subtracting the specified number of months. Date-Time should be a date-time field type or as results of toTime() function.
int - Required. The number of months to be subtracted from the date-time value.
Example
datetime = "Aug 21, 2013 16:04:37";
time = datetime.toTime();
meetingTime=time.subMonth(3) // returns May 21, 2013 16:04:37
meetingTime=input.Date_Time.subMonth(2); // here, input.Date_Time refers to the date-time field in the form.
datetime = "Aug 21, 2013 16:04:37";
time = datetime.toTime();
meetingTime=subMonth(time, 3) // returns May 21, 2013 16:04:37
meetingTime=subMonth(input.Date_Time, 2); // here, input.Date_Time refers to the date-time field in the form.
