Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I insert a decimal into a number? I need to insert this before the
fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Mark
=LEFT(A1,LEN(A1)-4)&"."&RIGHT(A1,4) Regards Roger Govier MarkM wrote: How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Roger, Thats what I was looking for.
"Roger Govier" wrote: Hi Mark =LEFT(A1,LEN(A1)-4)&"."&RIGHT(A1,4) Regards Roger Govier MarkM wrote: How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Mark
Please note the formula i gave you will produce text, which is what I presumed you wanted. I can see from other responses, they all interpreted your question as still requiring numerics, in which case each of the other responses received will do that perfectly and you should go with one of those solutions. Regards Roger Govier MarkM wrote: Thanks Roger, Thats what I was looking for. "Roger Govier" wrote: Hi Mark =LEFT(A1,LEN(A1)-4)&"."&RIGHT(A1,4) Regards Roger Govier MarkM wrote: How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ONe way:
A1: 4577600 A2: =A1/10000 Format A2 with 4 decimal places. In article , "MarkM" wrote: How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Can't you just divide the number by 10,000? Andy. "MarkM" wrote in message ... How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
type 10000 in an unused cell , left click on it and choose COPY
then highlight all the cells you wish to change, then right-click PasteSpecial Divide.......... Vaya con Dios, Chuck, CABGx3 "MarkM" wrote: How can I insert a decimal into a number? I need to insert this before the fourth character in the string from the right? I cannot insert this from the left of the string because the number of characters in the sting to the left can vary. For example: I need to change 4577600 to 457.7600 Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
converting number string to number with decimal | Excel Worksheet Functions | |||
Auto convert an alphanumeric string (CIS9638S) to numbers only? | Excel Worksheet Functions | |||
FIXED 2 DECIMAL PLACES, MUST ENTER ALL ZEROES AFTER DECIMAL POINT. | Excel Discussion (Misc queries) | |||
How do I enter a decimal in a string of numbers in Excel? Example. | Excel Discussion (Misc queries) | |||
decimal point override does not work | Excel Discussion (Misc queries) |