RelativeDate.isRange
Property Description |
Whether the relative date represents a range of dates or a specific moment in time. For relative date ranges that you obtain from the query.RelativeDateRange enum, the value of this property is |
Type |
(read-only) |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2019.1 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/query Module Script Samples.
// Add additional code
...
var myRelativeDate = query.createRelativeDate({
dateId: query.DateId.WEEKS_AGO,
value: 2
});
var isARange = myRelativeDate.isRange; // isARange is false
var isAnotherRange = query.RelativeDateRange.LAST_MONTH_ONE_FISCAL_YEAR_AGO.isRange; // isAnotherRange is true
...
// Add additional code