Forum Discussion
Anonymous
7 years agoNot applicable
xml.document
Hello, One of the column I have is an xml type. It contains information as follow: <?xml version="1.0" encoding="utf-16"?> <string><DLTKVisionMessage><ReturnCode>ErrDataVal</ReturnCode><Ret...
- 7 years ago
Hello,
In Power Query you can add a new column for each case using the following formula:
= Text.BeforeDelimiter(Text.AfterDelimiter([Column1], "<MsgCode>"), "</MsgCode>")
For each column you have to modify the search text accordingly.
Regards,
ElenaN
Anonymous
7 years agoNot applicable
Hello,
Thanks for the solution. It seems to work well. Do you have the equivalent function in DAX?
v-chuncz-msft
7 years agoCommunity Support
Anonymous ,
You may refer to the post below.
https://community.powerbi.com/t5/Desktop/retrieve-text-string-from-cells-in-excel/m-p/305533#M135131