Forum Discussion
jacccodezwart
Helper I
3 years agoDashboard unable to refresh
Hi there, We have Power BI reporting server May 2022 version (we plan upgrade soon). On this server we have a report which is unable to refresh. It produces the following message. DataFor...
- 3 years ago
Later this value is converted using ' DateTimeZone.FromText(DateFilter)'.What made you do that? The original value seems to be just fine?
let Source = #table({"Column1"},{{"2019-12-31T23:59:59.99Z"}}), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type datetimezone}}) in #"Changed Type"How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".
lbendlin
Super User
3 years ago
Later this value is converted using ' DateTimeZone.FromText(DateFilter)'.
What made you do that? The original value seems to be just fine?
let
Source = #table({"Column1"},{{"2019-12-31T23:59:59.99Z"}}),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type datetimezone}})
in
#"Changed Type"
How to use this code: Create a new Blank Query. Click on "Advanced Editor". Replace the code in the window with the code provided here. Click "Done".
- jacccodezwart3 years ago
Helper I
Thanks for you response. Your solution works.
Jacco