Quarter / Temporal Layer

Extract quarter number from date/datetime values, similar to pandas quarter or SQL QUARTER(). Returns integers from 1 to 4.

Quarter definitions:

QuarterMonthsCommon TermsFiscal Year*
Q1Jan-MarWinter/Q1/FQ3Q3
Q2Apr-JunSpring/Q2/FQ4Q4
Q3Jul-SepSummer/Q3/FQ1Q1
Q4Oct-DecFall/Q4/FQ2Q2
*For fiscal years starting in July

Common applications:

  • Quarterly reports
  • Financial analysis
  • Business planning
  • Performance reviews
  • Seasonal trends
Table
0
0
Table

Transforms

[, ...]

Select

column

Date/datetime column to extract quarter from. Returns calendar quarter number (1-4), where Q1=Jan-Mar through Q4=Oct-Dec.

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.