The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello everyone,
First of all sorry for my english. I have two columns, one of them with different years and another one with quarters and i want to create a new column with date. For example:
Year Quarter Date (this is the column I want)
2018 1 01/01/2018
2017 2 01/04/2017
2016 4 01/10/2016
Is there any way to do this?
Thanks in advance!!!
Solved! Go to Solution.
@94veiga
Add this as a new column:
Date = DATE([Year], SWITCH( [Qtr], 1, 1, 2, 4, 3, 7, 4, 10) , 1 )
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@94veiga
Add this as a new column:
Date = DATE([Year], SWITCH( [Qtr], 1, 1, 2, 4, 3, 7, 4, 10) , 1 )
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you very much for your time!! I really aprecciate it!!