Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Team,
can anyone help me how can i remove some text from the column headers in M Query.
Below is how my advance editor looks like as of now.
let
Source = Table.Combine({#"59Z]&size=10000", #"59Z]&size=10000 (2)"}),
#"Filtered Rows" = Table.SelectRows(Source, each not Text.Contains([Column1._index], "xyz"))
in
#"Filtered Rows"
Solved! Go to Solution.
I figured it out 🙂 thank for your help @amitchandak
let
Source = Table.Combine({#"59Z]&size=10000", #"59Z]&size=10000 (2)"}),
#"Rename all Headers" = Table.TransformColumnNames(Source,each Text.Replace(_,"Column1._source.","")),
#"Filtered Rows" = Table.SelectRows(#"Rename all Headers", each not Text.Contains([Column1._index], "xyz"))
in
#"Filtered Rows"
@amitchandak the column names contains text "column1._source" which i need to replace with null.
I figured it out 🙂 thank for your help @amitchandak
let
Source = Table.Combine({#"59Z]&size=10000", #"59Z]&size=10000 (2)"}),
#"Rename all Headers" = Table.TransformColumnNames(Source,each Text.Replace(_,"Column1._source.","")),
#"Filtered Rows" = Table.SelectRows(#"Rename all Headers", each not Text.Contains([Column1._index], "xyz"))
in
#"Filtered Rows"
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
30 | |
26 |
User | Count |
---|---|
99 | |
87 | |
45 | |
43 | |
35 |