Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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" )
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
68 | |
64 | |
52 | |
39 | |
26 |
User | Count |
---|---|
80 | |
57 | |
45 | |
44 | |
35 |