Forum Discussion
Extract only text (with accent) from a number/string column
Hello everyone, forum noob here.
Someone can give me a tip on how to extract only the text (with accent) from that column:
The top 2 lines (number) (duration) will be useless for me, also in some cases the text can fill up to 2 rows instead of only one, like the example below
I am a power bi padawan yet.
I made a short video showing how to integrate M-code into your solution here: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/Power-BI-Forum-Help-How-to-integrate-M-code-into-your-existing/m-p/179314
4 Replies
- AnonymousNot applicable
Hi marcura ,
Could you try with this query :
let Source = YourTable,
#"Duplicated Column" = Table.DuplicateColumn(Source, "Mesclado", "Mesclado2"), #"Filtered Rows" = Table.SelectRows(#"Duplicated Column", each not Text.Contains([#"Mesclado2"], "->")), #"Changed Type" = Table.TransformColumnTypes(#"Filtered Rows",{{"Mesclado2", type number}}), #"Kept Errors" = Table.SelectRowsWithErrors(#"Changed Type", {"Mesclado2"}), #"Removed Columns" = Table.RemoveColumns(#"Kept Errors",{"Mesclado2"}) in #"Removed Columns"- marcuraHelper II
I already have this code:
let
Source = Csv.Document(File.Contents("C:\Users\João.Marçura\Downloads\Subtitles\[LilSubs.com]__Portuguese.txt"),[Delimiter="#(tab)", Columns=1, Encoding=65001, QuoteStyle=QuoteStyle.None]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Column1", "Mesclado"}}),
#"Removed Blank Rows" = Table.SelectRows(#"Renamed Columns", each not List.IsEmpty(List.RemoveMatchingItems(Record.FieldValues(_), {"", null})))
in
#"Removed Blank Rows"
How can i integrate both? Also the column "Mesclado2" will generate from the code or it must be created before?- ImkeFCommunity Champion
I made a short video showing how to integrate M-code into your solution here: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/Power-BI-Forum-Help-How-to-integrate-M-code-into-your-existing/m-p/179314