Month / Temporal Layer

Extract month number from date/datetime values, similar to datetime.month in Python or MONTH() in SQL. Returns integers from 1 to 12.

Example extractions:

DateMonthNameQuarterDays
2024-01-151JanuaryQ131
2024-02-292FebruaryQ129
2024-06-306JuneQ230
2024-12-3112DecemberQ431

Common applications:

  • Monthly reporting
  • Seasonal analysis
  • Financial periods
  • Resource planning
  • Growth comparisons
Table
0
0
Table

Transforms

[, ...]

Select

column

Date/datetime column to extract month from. Returns calendar month number (1-12), where 1=January through 12=December.

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.