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.
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" )
User | Count |
---|---|
85 | |
84 | |
36 | |
34 | |
31 |
User | Count |
---|---|
92 | |
79 | |
66 | |
55 | |
52 |