Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a column currently that is numeric data type as 1's, 2's, 3's and 4's. These actually represent Quarters 1,2,3 and 4 from 2017. How can I convert the column to be recognized as Quarter date.
Solved! Go to Solution.
Hey,
using DAX you can create a calculated column like so (assuming that the column in your table is called "QuarterNo"):
QuarterDate = DATE(2017 , '<tablename>'[QuarterNo] * 3 , 1)
This will create a date that represents the 1st Day of the last month in a quarter.
Of course you can also use EOMONTH(DATE( ... ) , 0)
Hope this provides you with some ideas.
Regards,
Tom
Hey,
using DAX you can create a calculated column like so (assuming that the column in your table is called "QuarterNo"):
QuarterDate = DATE(2017 , '<tablename>'[QuarterNo] * 3 , 1)
This will create a date that represents the 1st Day of the last month in a quarter.
Of course you can also use EOMONTH(DATE( ... ) , 0)
Hope this provides you with some ideas.
Regards,
Tom
Yes - this is what I needed! Thanks!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 26 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |