Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Antonio! thank you so much for your help. I tried the MID function. It
works great! Is there a way to convert the resulkting number from string to an integer? that is, the mid function returns a "5", instead of a 5 "a.riva@UCL" wrote: Have you tried with string formulas such as MID? Using a For ... Next loop you could write a procedure that extracts at each recursion one of the digits, and you could store them in an array. For example: For i=1 to Len(number) digit(i) = MID(number, i, 1) Next i Antonio. On 15 Oct, 17:08, Paco wrote: Hi Guys! I need to split numbers into its digits which i will latter assign to variables. For instance: originalNumber = 12345 then a = 1 b = 2 c = 3 d = 4 e = 5 I am building a macro, so I cannot use the "text to columns trick" with fixed delimiters Thanks a lot guys!! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA write macro change column with 3 number digits to 4 digits the | Excel Discussion (Misc queries) | |||
number 12 digits to 15 digits | Excel Discussion (Misc queries) | |||
How many number digits can I fit into one cell? | Excel Discussion (Misc queries) | |||
Sum of digits in a number | Excel Worksheet Functions | |||
How to customize number to 10 digits including 2 digits after deci | Excel Worksheet Functions |