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!View all the Fabric Data Days sessions on demand. View schedule
Hi All,
I have list of items in a table as below:
LON_HOME
LON_ADDRESS
LON_PERSON
LON_OWNER etc
I want data appears in the report as:
HOME
ADDRESS
PERSON
OWNER
I am using Power Bi desktop version.
Thanks
Solved! Go to Solution.
There can be many ways to do it.
1. In power query replace LON_ to blank.
2. You can split the column in Power query by number of delimiters as 4 as far left as possible.
Hi @sdhn ,
You can copy and paste the following codes in your Advanced Editor:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8vH3i/fw93VVitWBcBxdXIJcg4Ph/ADXoGB/PzjXP9zPNUgpNhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Text = _t]),
#"Trimmed Text" = Table.TransformColumns(Source,{{"Text", Text.Trim, type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Trimmed Text","LON_","",Replacer.ReplaceText,{"Text"})
in
#"Replaced Value"
Best Regards
There can be many ways to do it.
1. In power query replace LON_ to blank.
2. You can split the column in Power query by number of delimiters as 4 as far left as possible.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 10 | |
| 4 | |
| 3 | |
| 3 |