Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have a date column that has dates from 01/01/2018 to 30/09/2019. Using this date field by default I can get calendar Quarters.
But my requirement is to generate custom quarters using specific date intervals as below,
27 September 2018 to 31 Dec 2018 - Q4-2018
01 Jan 2019 to 4th March 2019 - Q1-2019
5th March 2019 - 27th June 2019 - Q2-2019
28th June 2019 - 30th September 2019 - Q3-2019
can some one help me in getting the Custom Quarters as above?
A quick help would be much appreciated
Solved! Go to Solution.
Use a SWITCH statement like:
Quarter = SWITCH( TRUE(), [Date] >= DATE(2018,9,27) && [Date] <= DATE(2018,12,31),"Q4", [Date] >= DATE(2019,1,1) && [Date] <= DATE(2019,3,4),"Q1", [Date] >= DATE(2019,3,4) && [Date] <= DATE(2019,9,30),"Q2", "Q3" )
Use a SWITCH statement like:
Quarter = SWITCH( TRUE(), [Date] >= DATE(2018,9,27) && [Date] <= DATE(2018,12,31),"Q4", [Date] >= DATE(2019,1,1) && [Date] <= DATE(2019,3,4),"Q1", [Date] >= DATE(2019,3,4) && [Date] <= DATE(2019,9,30),"Q2", "Q3" )
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
61 | |
46 | |
45 |