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! Request now
Hi Experts
I have the following columns a table and i want to add an additional column that gives the first day of the Month.
Year (No.) Month (text) Add column (Date)
2020 Jan 01/01/2020
is this possible as a step in Power query.
Solved! Go to Solution.
@Anonymous ,
You can use:
Date.FromText(Number.ToText([Year]) &"/"& [Month] & "/01")
If necessary, Date.FromText has a culture parameter...you can use it to be sure of the format.
https://docs.microsoft.com/en-us/powerquery-m/date-fromtext
@Anonymous ,
You can use:
Date.FromText(Number.ToText([Year]) &"/"& [Month] & "/01")
If necessary, Date.FromText has a culture parameter...you can use it to be sure of the format.
https://docs.microsoft.com/en-us/powerquery-m/date-fromtext
Perfect thank you sir
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.