Forum Discussion
Anonymous
2 years agoNot applicable
Error in the Date format
Hi Team, Could you please help me in fixing the below error face in Power BI: Expression.Error: The Date operation failed because the resulting value falls outside the range of allowed values. Det...
Vijay_A_Verma
Most Valuable Professional
2 years agoIn Power Query date between the years 1900 and 9999 are supported.
The error says that there is a date 1/1/0099 which is naturally before year 1900, hence not supported. Hence, the operation is failing.
Either you need to correct this data in source or in Power Query itself.
ronrsnfld
Super User
2 years agoIn Power Query dates are supported from 1/1/0001. The problem lies elsewhere.
let
Source = #table(1,{{"1/1/0099"},{"1/1/0001"}}),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type date}})
in
#"Changed Type"
- Anonymous2 years agoNot applicable
Hi Vijay,
Can you please explain briefly what is the issue?
Thanks
- ronrsnfld2 years ago
Super User
Not without seeing your data and code. And I'm not going to copy a screenshot.