Format these cells as "Text" before you replace
the "x" with "".
Mark W,
Try this....
If your input datum is in cell A1, placing the following formula in cell B1 should give you the data that you want...
=RIGHT(A1,LEN(A1)-1)
The output is text, not number, format.
All the best, MikeB
Thanks to Mike and Mark.
The formula Mike mentioned works. But I forgot to mention that the x can appear anywhere in the string not just at the begining. However I can use the principle of the formula and add something to it to locate the position of x.
Making the cell Text doesn't work (in my version).
We've also found other problems where *sometimes* Excel is displaying text cells with numbers by rounding them - the total number of characters being 11, 10 digits plus a decimal place, although the actual data value in the cell has many more digits.
So we've given up on Excel for now (too unpredictable) and are using Word!
Once again thanks for the help.
Anthony
> The formula Mike mentioned works. But I forgot to mention that the x can appear anywhere in the string not just at the begining. However I can use the principle of the formula and add something to it to locate the position of x.
Use rather:
=SUBSTITUTE(A1,"x","")
which also delivers text-formatted output.
Aladin