Excel - Unexpected Error, Something went wrong. If the problem continues, please restart Excel.
I am trying to create a web query, but it continues to fail. I can see the data from the table, but when try to load or edit, I get the Unexpected error.
shared #"NavigatorBase_d7b1e33b-12e0-429d-a134-38aa64065c4a" = let
Source = Web.Page(Web.Contents("http://xxxxxmetrics/investments/index?symbol=aapl"))
in
Source;
Workaround
I create a blank query then changed the Advanced editor
let
Source = Web.Page(Web.Contents("http://xxxxxmetrics/investments/index?symbol=aapl")),
Data = Source{0}[Data],
#"Changed Type" = Table.TransformColumnTypes(Data,{{"Symbol", type text}, {"Code", type text}, {"Description", type text}, {"Year", Int64.Type}, {"Quarter", Int64.Type}, {"Period Type", type text}, {"Value", type number}})
in
#"Changed Type"
I am trying to create a web query, but it continues to fail. I can see the data from the table, but when try to load or edit, I get the Unexpected error.
shared #"NavigatorBase_d7b1e33b-12e0-429d-a134-38aa64065c4a" = let
Source = Web.Page(Web.Contents("http://xxxxxmetrics/investments/index?symbol=aapl"))
in
Source;
Workaround
I create a blank query then changed the Advanced editor
let
Source = Web.Page(Web.Contents("http://xxxxxmetrics/investments/index?symbol=aapl")),
Data = Source{0}[Data],
#"Changed Type" = Table.TransformColumnTypes(Data,{{"Symbol", type text}, {"Code", type text}, {"Description", type text}, {"Year", Int64.Type}, {"Quarter", Int64.Type}, {"Period Type", type text}, {"Value", type number}})
in
#"Changed Type"