Date.AddQuarters
Aggiunge i trimestri specificati alla data.
Syntax
Date.AddQuarters(
dateTime as any,
numberOfQuarters as number
) as any
Remarks
Restituisce l'elemento date
, datetime
o datetimezone
risultante dall'aggiunta di numberOfQuarters
trimestri al valore dateTime
di datetime
.
dateTime
: il valoredate
,datetime
odatetimezone
a cui vengono aggiunti i trimestri.numberOfQuarters
: il numero di trimestri da aggiungere.
Examples
Example #1
Aggiungere 1 trimestre al valore <code>date</code>, <code>datetime</code> o <code>datetimezone</code> che rappresenta la data 14/5/2011.
Date.AddQuarters(#date(2011, 5, 14), 1)
Result:
#date(2011, 8, 14)
Category
Date