For example, I want to remove "Customer" from the column named "Number". Maybe there will be some space between the character and number.
Before:
| Number |
| 706420Customer |
| 709382 |
| 112102 Customer |
| 665946 |
| 987456 Customer |
After:
| Number |
| 706420 |
| 709382 |
| 112102 |
| 665946 |
| 987456 |
Solved! Go to Solution.
Trim([Number],"Customer")
