Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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" )
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.