I have data that the zero varies where it is located. Some examples would be AA01 or AA01x as well as AA10, AA10x, etc.
The first two characters are always letters and I want to return the rest of string without a zero in the third place. So if the first column is AA01x, I want the next column to display AA1x. While if the first column has AA10, I want it to return AA10.
I tried =SUBSTITUTE(Column@row, "0", ""), but when I have AA10 or AA01 it returns AA1 in both cases. I need it to display AA10 & AA1.
Thanks in advance!