DataFormat.Error

lynzlou

New Member
Joined
Mar 31, 2014
Messages
16
I am trying to clean up data in Power that will eventually be exported into access (achieved employee records). Of the 2866 rows I imported into power query, I have 375 errors in one column and the error reads:

DataFormat.Error: We couldn't convert to Time.
Details:
1.083333333

*numbers under details differ

I tried changing my locale but can' clear the errors

thoughts?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Re: DataFormat.Error: WTF??

All times must be between 0 and 1. You didn't state which result you are looking for.
You may either want to change the type to duration or you may first take the modulo of the number and then change the type to time.

Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Time", type number}}),
    #"Calculated Modulo" = Table.TransformColumns(#"Changed Type", {{"Time", each Number.Mod(_, 1), type number}}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Calculated Modulo",{{"Time", type time}})
in
    #"Changed Type1"
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,974
Members
448,934
Latest member
audette89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top