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
In my table date format is in decimal format as shown: 20160327
How can change into the correct format as 03/27/2017 in Power Bi Desktop?
Can any one help me?
Thanks.
Solved! Go to Solution.
You may add a custom column in Query Editor.
Date.ToText( #date( Value.FromText(Text.Start(Text.From([Column1]),4)) , Value.FromText(Text.Range(Text.From([Column1]),4,2)) , Value.FromText(Text.End(Text.From([Column1]),2)) ) , "MM/dd/yyyy" )
You may add a custom column in Query Editor.
Date.ToText( #date( Value.FromText(Text.Start(Text.From([Column1]),4)) , Value.FromText(Text.Range(Text.From([Column1]),4,2)) , Value.FromText(Text.End(Text.From([Column1]),2)) ) , "MM/dd/yyyy" )
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.