English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i want to convert a value in one column that is "03333392503" to the value "923333392503". how can i convert it. please help and tell me the formula to convert it. pleae help

2007-05-16 19:10:06 · 5 answers · asked by Kashan 1 in Computers & Internet Programming & Design

5 answers

If the original value is in cell A1, then
="92"&RIGHT(A1,LEN(A1-1))

Let me explain the function
The RIGHT function takes the right set of letters from the string specified. It will take the number of letters that are state.
The LEN function states how many letters are in the string.
The & operator concatenates the two strings together (you could also use the CONCATENATE function).

This function thus take the "92" and puts it on the front of the string, then adds the letters from the original string except for the left most letter.

2007-05-16 19:22:09 · answer #1 · answered by Math Guy 4 · 0 0

Well I cant believe this is the answer.
=a1+920000000000

Or if the number is a text field
=concatenate("92",a1)
or if you have a leading zero
=concatenate("92",right(A1,10))

Is that really all you wanted to know?

2007-05-17 02:29:19 · answer #2 · answered by AnalProgrammer 7 · 0 0

try this in adjacent column with some function that eliminate the starting character, i.e. o from the original number

=CONCATENATE(92, A1)

2007-05-17 02:25:54 · answer #3 · answered by Muhammad Salman 2 · 0 0

Your question is so incredibly vague that I couldn't begin to attempt to answer this. Would you mind including some more details?

I don't see why you can't just retype the value where you need it changed.

2007-05-17 02:15:23 · answer #4 · answered by sndsofscnce 2 · 0 0

Assuming the number is at cell A1; then use the following:
=CONCATENATE(MID(A1;6;2);A1)

You can use for any number with same number of digits.

regards,
:)

2007-05-17 02:28:41 · answer #5 · answered by Auday 3 · 0 0

fedest.com, questions and answers