Removing letter from column

Hii,

I need to remove the first letter (A) and last letter (A) from the column value - A14059417536A
How I can execute this?

0 2 540
2 REPLIES 2

In general SUBSTITUTE() function should work. Please take a look if it helps.
An expression something like SUBSTITUTE([Column Name],โ€œAโ€,"")

Here [Column Name] contains the original text string having 2 "A"s, that is โ€œA14059417536Aโ€

Please post more details if you are looking at something else.

Steve
Platinum 4
Platinum 4

Try:

MID([Column], 2, (LEN([Column]) - 2))


Top Labels in this Space