Creator Help

Minute

This topic describes the syntax and usage of the minute function in Zoho Creator .

Description

The minnute function returns the minutes from a given date-time.. 

Syntax

minute(date-time)

The minute function syntax has the following arguments.

date-time - Required. The date-time from which you want to fetch the hour value. Date-Time should be a date-time field type or as results of toTime() function. 

Example 

    

datetime = "Aug 21, 2013 13:10:40";
time = datetime.toTime();

meetingTime=minute(time)       // returns 10
    

meetingTime=minute(input.Date_Time);  // here, input.Date_Time refers to the date-time field in the form.

Top