Forum Discussion
TimeZone Issue
v-juanli-msft thank you, I referenced the blog post and found this too https://www.excelguru.ca/blog/2015/05/20/data-from-different-timezones/ however I am now getting an error using the below, I get and Expression.Error:
let
Source = Salesforce.Data("https://xxxxxxxxxxxx.my.salesforce.com"),
Lead1 = Source{[Name="Lead"]}[Data],
#"Removed Other Columns" = Table.SelectColumns(Lead1,{"Id", "Name", "Email", "CreatedDate"}),
#"Changed Type" = Table.TransformColumnTypes(#"Removed Other Columns",{{"CreatedDate", type datetimezone}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Created Date/Time (CST)", each DateTimeZone.ToLocal(DateTime.AddZone([CreatedDate],0)))
in
#"Added Custom"
Hi aaron1225
It should be possible to fix the timezone issue, but i'm confuzed by your expected result.
If "created date"=2015/8/27 4:47:10 PM -05:00,
What's result do you want by your formula
"#"Added Custom" = Table.AddColumn(#"Changed Type", "Created Date/Time (CST)", each DateTimeZone.ToLocal(DateTime.AddZone([CreatedDate],0)))" ?
Best Regards
Maggie