Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
marcura
Helper II
Helper II

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:

 

Screenshot_1.png

 

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


Screenshot_2.png

I am a power bi padawan yet.

1 ACCEPTED SOLUTION
ImkeF
Community Champion
Community 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-c... 

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

View solution in original post

4 REPLIES 4
Anonymous
Not 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"

 

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?

ImkeF
Community Champion
Community 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-c... 

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Nolock
Resident Rockstar
Resident Rockstar

Hi @marcura,

please define some rules which should filter out all unwanted lines. You know best your data. Then I can rewrite these rules in PQ.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors