Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi all!!
I have a really strange case.
My datasource is Google Sheet with many data (like 1 mln) for multiple dates.
While loading it to Power BI I am geeting errors on Date fields.
Why is that? Because in one case data field in alligned to right and on the other to left.
Is this even possible to have this kind of error based on formating?
Alignment to the left indicates the data is text. Alignment to the right indicates the data is numeric or datetime. The date of 8th October likely has spaces preceeding or following it which leaves it being interpreted as text. The following will convert all rows to datetime. It works by
= Table.AddColumn(
#"Name of Previous Step",
"Datetime", each
if ( Type.Is( Value.Type([Raw Date]), DateTime.Type) )
then [Raw Date]
else DateTime.From( Text.Trim([Raw Date]) ),
type datetime)
Here is my Google Sheet,
and here is my result in Power Query (I am working in UK local so my date format is day, month, year).
Hi,
It may be some space issue. Try trim(inside the format) in the column.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 5 | |
| 5 |