Forum Discussion
Change text encoding in XML imported from Sharepoint Folder
- 4 years ago
I finally found it!
When importing data from Sharepoint Folder, a FUNCTION is created automatically. There, the XML.File command is created
= (Parameter1 as binary) => let
Source = Xml.Tables(Parameter1),
Table0 = Source{0}[Table]
in
Table0So, I can change it there
= (Parameter1 as binary) => let
Source = Xml.Tables(Parameter1,[], TextEncoding.Windows),
Table0 = Source{0}[Table]
in
Table0That's it!
I finally found it!
When importing data from Sharepoint Folder, a FUNCTION is created automatically. There, the XML.File command is created
= (Parameter1 as binary) => let
Source = Xml.Tables(Parameter1),
Table0 = Source{0}[Table]
in
Table0
So, I can change it there
= (Parameter1 as binary) => let
Source = Xml.Tables(Parameter1,[], TextEncoding.Windows),
Table0 = Source{0}[Table]
in
Table0
That's it!