跳到主要内容

EOMONTH

Returns the serial number of the last day of the month before or after the specified number of months.

Syntax

expression.EOMONTH(arg1, arg2);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberA serial date number that represents the start date.
arg2RequiredApiRange | ApiName | numberThe number of months before or after the start date.

Returns

number

Example

This example shows how to return the serial number of the last day of the month before or after the specified number of months.

// How to get a date of the last day of the month before or after specified months.

// Use function to get the serial number of the last day of the month before or after the specified number of months.

const worksheet = Api.GetActiveSheet();

let func = Api.GetWorksheetFunction();
let ans = func.EOMONTH("3/16/2018", 10);

worksheet.GetRange("C1").SetValue(ans);