M Mike Nov 14, 2008 #1 My cell contains the data *98. I want another cell to recognize this as the number 98. Any suggestions ?
My cell contains the data *98. I want another cell to recognize this as the number 98. Any suggestions ?
O Otto Moehrbach Nov 14, 2008 #2 This formula will work for the example you gave. HTH Otto =--RIGHT(A1,2)
S Shane Devenshire Nov 14, 2008 #4 Hi, LEFT returns text, so instead you can write either =--RIGHT(A1,2) or =--SUBSTITUTE(A1,"*","") You start both of these with 2 minus signs. By the way the RIGHT function is set to work only for 3 digit entries, you could generalize if =--RIGHT(A1,LEN(A1)-1) If these help, please click the Yes button. Cheers, Shane Devenshire
Hi, LEFT returns text, so instead you can write either =--RIGHT(A1,2) or =--SUBSTITUTE(A1,"*","") You start both of these with 2 minus signs. By the way the RIGHT function is set to work only for 3 digit entries, you could generalize if =--RIGHT(A1,LEN(A1)-1) If these help, please click the Yes button. Cheers, Shane Devenshire