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.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 27 | |
| 25 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 53 | |
| 46 | |
| 38 | |
| 30 | |
| 21 |