QUARTERTODATE
Returns the cumulative sum of the specified metric from the start of the current quarter up till the current date. For past quarters, the cumulative sum of the metric is calculated for the three month period.
Syntax: QUARTERTODATE(
metric
)
Example: Consider a Metric A with the following values:
Month
Jan
Feb
Mar
Apr
May
A
10
20
30
40
20
B = QUARTERTODATE ( A )
Output:
Month
Jan
Feb
Mar
Apr
May
B
10
30
60
40
60
Last updated
Was this helpful?