Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi Epxerts
I want to convert date in text format from 2019_01 into 01 Jan 2019 in Power Query.
Data Examples
2019_01
2019_02
where the second part is the month
i have tried
1. Add Column - Custom Column
2. Type = Date.From("01-" & [Column])
and no luck.
Solved! Go to Solution.
@Anonymous , create a new column
Date = date(left([column],4), right([column],2), 1)
@Anonymous
Try this please:
#date( Number.From(Text.Start([Column],4)) ,Number.From(Text.End([Column],2)),1)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
You can use this code in Power Query.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.