M Code to strip almost all non-alphanumeric characters from a column

JGordon11

Well-known Member
Joined
Jan 18, 2021
Messages
845
Office Version
  1. 365
Platform
  1. Windows
In PQ in a column named Thru, I'd like to delete all non-alphanumeric characters with the exception of + and -. Anyone know M code step(s) to accomplish this following a step called #"Promoted Headers"?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
You could use code like this in a new column.
VBA Code:
= Table.AddColumn(#"Changed Type", "New Thru", each Text.Combine(List.RemoveItems(Text.ToList([Thru]), {"0","1","2","3","4","5","6","7","8","9"}))
)
Obviously you would need to add all the characters you want to replace, though it might be possible to get that from another table.

You can indeed get the characters to remove from another table, the following code assumes you have a table named 'Replace' with a column named 'Characters' which lists all the characters you want to replace.

VBA Code:
= Table.AddColumn(#"Renamed Columns", "NewThru", each Text.Combine(List.RemoveItems(Text.ToList([Thru]), Table.Column(Replace, "Characters"))))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,879
Messages
6,175,148
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top