Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
How can we add quarter column using date in power query not dax
Any help would be appreciated
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous ,
To get calendar quarters you can just use:
Date.QuarterOfYear([Date])
To get financial quarters, you will first need to define your financial periods as period numbers against each date. Then you can use the following referencing the financial period:
Table.AddColumn(previousStep, "finQtr", each
if [finPeriod] >= 1 and [finPeriod] <= 3 then "Q1"
else if [finPeriod] >= 4 and [finPeriod] <= 6 then "Q2"
else if [finPeriod] >= 7 and [finPeriod] <= 9 then "Q3"
else "Q4"),
Pete
Proud to be a Datanaut!
Hi @Anonymous ,
To get calendar quarters you can just use:
Date.QuarterOfYear([Date])
To get financial quarters, you will first need to define your financial periods as period numbers against each date. Then you can use the following referencing the financial period:
Table.AddColumn(previousStep, "finQtr", each
if [finPeriod] >= 1 and [finPeriod] <= 3 then "Q1"
else if [finPeriod] >= 4 and [finPeriod] <= 6 then "Q2"
else if [finPeriod] >= 7 and [finPeriod] <= 9 then "Q3"
else "Q4"),
Pete
Proud to be a Datanaut!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |