YEARTODATE
Returns the cumulative sum of the specified metric from the start of the current fiscal year up till the current date.
Syntax: YEARTODATE(
metric
)
Example: Consider a Metric A with the following values:
Month
Jan
Feb
Mar
Apr
May
A
10
20
30
40
20
B = YEARTODATE ( A )
Output:
Month
Jan
Feb
Mar
Apr
May
B
10
30
60
100
120
Last updated
Was this helpful?