Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-22-2008, 05:44 PM
=?Utf-8?B?QWx2eW4=?=
 
Posts: n/a
How to separate numbers within a cells into column

Hi

I have search all the web but still cannot find a solution to this problem.

I have a single cell containing the number -> 12345

I wanted to either separate the number 1 into column A, 2 into Column B, 3
into Column C and so on.

Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is also
fine.

How to go about it?

Any EXCEL experts here can please advise me?

Thank you very much.

alvynng
Reply With Quote
  #2 (permalink)  
Old 05-22-2008, 05:53 PM
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
 
Posts: n/a
RE: How to separate numbers within a cells into column

If your value is in B1, then in A1 enter:

=MID($A2,COLUMN(),1) and copy across
--
Gary''s Student - gsnu200787
Reply With Quote
  #3 (permalink)  
Old 05-22-2008, 05:57 PM
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
 
Posts: n/a
RE: How to separate numbers within a cells into column

Sorry


I should have said the value nust be in A2, not B1
--
Gary''s Student - gsnu200787


"Alvyn" wrote:

> Hi
>
> I have search all the web but still cannot find a solution to this problem.
>
> I have a single cell containing the number -> 12345
>
> I wanted to either separate the number 1 into column A, 2 into Column B, 3
> into Column C and so on.
>
> Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is also
> fine.
>
> How to go about it?
>
> Any EXCEL experts here can please advise me?
>
> Thank you very much.
>
> alvynng

Reply With Quote
  #4 (permalink)  
Old 05-22-2008, 06:00 PM
=?Utf-8?B?QWx2eW4=?=
 
Posts: n/a
RE: How to separate numbers within a cells into column

Hi Gary,

Can you please elaborate? or maybe explain more simply to a EXCEL nuts here.

Thanks

"Gary''s Student" wrote:

> If your value is in B1, then in A1 enter:
>
> =MID($A2,COLUMN(),1) and copy across
> --
> Gary''s Student - gsnu200787

Reply With Quote
  #5 (permalink)  
Old 05-22-2008, 06:25 PM
=?Utf-8?B?QWx2eW4=?=
 
Posts: n/a
RE: How to separate numbers within a cells into column

Dear Gary,

It does not work as desire.

Thanks


"Gary''s Student" wrote:

> Sorry
>
>
> I should have said the value nust be in A2, not B1
> --
> Gary''s Student - gsnu200787
>
>
> "Alvyn" wrote:
>
> > Hi
> >
> > I have search all the web but still cannot find a solution to this problem.
> >
> > I have a single cell containing the number -> 12345
> >
> > I wanted to either separate the number 1 into column A, 2 into Column B, 3
> > into Column C and so on.
> >
> > Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is also
> > fine.
> >
> > How to go about it?
> >
> > Any EXCEL experts here can please advise me?
> >
> > Thank you very much.
> >
> > alvynng

Reply With Quote
  #6 (permalink)  
Old 05-22-2008, 06:44 PM
Vulcan
 
Posts: n/a
Re: How to separate numbers within a cells into column

Presumably you're original number, 12345 is a number and not text. In order
for the above formula to work, you need to either format the number as text,
or use the text conversion in your formula.

Assuming you have the desired number is Colum A, Row 9 and you want it split
out into columns B9,C9,D9,E9 &F9 you could use:

=MID(TEXT($A9,"0"),COLUMN()-1,1)

in Colum B and copy to C,D,E&F

Now, the result will be text in those columns so if you want them to be
numbers, you need to add a function to convert them into numbers which would
look like this:

=VALUE(MID(TEXT($A9,"0"),COLUMN()-1,1))



"Alvyn" <Alvyn@discussions.microsoft.com> wrote in message
news:734FCE46-64B2-497E-8572-81EE89A8D2CC@microsoft.com...
> Dear Gary,
>
> It does not work as desire.
>
> Thanks
>
>
> "Gary''s Student" wrote:
>
>> Sorry
>>
>>
>> I should have said the value nust be in A2, not B1
>> --
>> Gary''s Student - gsnu200787
>>
>>
>> "Alvyn" wrote:
>>
>> > Hi
>> >
>> > I have search all the web but still cannot find a solution to this
>> > problem.
>> >
>> > I have a single cell containing the number -> 12345
>> >
>> > I wanted to either separate the number 1 into column A, 2 into Column
>> > B, 3
>> > into Column C and so on.
>> >
>> > Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is
>> > also
>> > fine.
>> >
>> > How to go about it?
>> >
>> > Any EXCEL experts here can please advise me?
>> >
>> > Thank you very much.
>> >
>> > alvynng


Reply With Quote
  #7 (permalink)  
Old 05-22-2008, 07:15 PM
Gord Dibben
 
Posts: n/a
Re: How to separate numbers within a cells into column

Try again.

12345 in A2

In A1 enter =MID($A2,COLUMN(),1)

Copy across to E1


Gord Dibben MS Excel MVP

On Thu, 22 May 2008 10:25:01 -0700, Alvyn <Alvyn@discussions.microsoft.com>
wrote:

>Dear Gary,
>
>It does not work as desire.
>
>Thanks
>
>
>"Gary''s Student" wrote:
>
>> Sorry
>>
>>
>> I should have said the value nust be in A2, not B1
>> --
>> Gary''s Student - gsnu200787
>>
>>
>> "Alvyn" wrote:
>>
>> > Hi
>> >
>> > I have search all the web but still cannot find a solution to this problem.
>> >
>> > I have a single cell containing the number -> 12345
>> >
>> > I wanted to either separate the number 1 into column A, 2 into Column B, 3
>> > into Column C and so on.
>> >
>> > Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is also
>> > fine.
>> >
>> > How to go about it?
>> >
>> > Any EXCEL experts here can please advise me?
>> >
>> > Thank you very much.
>> >
>> > alvynng


Reply With Quote
  #8 (permalink)  
Old 05-22-2008, 07:24 PM
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
 
Posts: n/a
Re: How to separate numbers within a cells into column

It should work for both numbers AND text.
--
Gary''s Student - gsnu200787


"Vulcan" wrote:

> Presumably you're original number, 12345 is a number and not text. In order
> for the above formula to work, you need to either format the number as text,
> or use the text conversion in your formula.
>
> Assuming you have the desired number is Colum A, Row 9 and you want it split
> out into columns B9,C9,D9,E9 &F9 you could use:
>
> =MID(TEXT($A9,"0"),COLUMN()-1,1)
>
> in Colum B and copy to C,D,E&F
>
> Now, the result will be text in those columns so if you want them to be
> numbers, you need to add a function to convert them into numbers which would
> look like this:
>
> =VALUE(MID(TEXT($A9,"0"),COLUMN()-1,1))
>
>
>
> "Alvyn" <Alvyn@discussions.microsoft.com> wrote in message
> news:734FCE46-64B2-497E-8572-81EE89A8D2CC@microsoft.com...
> > Dear Gary,
> >
> > It does not work as desire.
> >
> > Thanks
> >
> >
> > "Gary''s Student" wrote:
> >
> >> Sorry
> >>
> >>
> >> I should have said the value nust be in A2, not B1
> >> --
> >> Gary''s Student - gsnu200787
> >>
> >>
> >> "Alvyn" wrote:
> >>
> >> > Hi
> >> >
> >> > I have search all the web but still cannot find a solution to this
> >> > problem.
> >> >
> >> > I have a single cell containing the number -> 12345
> >> >
> >> > I wanted to either separate the number 1 into column A, 2 into Column
> >> > B, 3
> >> > into Column C and so on.
> >> >
> >> > Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is
> >> > also
> >> > fine.
> >> >
> >> > How to go about it?
> >> >
> >> > Any EXCEL experts here can please advise me?
> >> >
> >> > Thank you very much.
> >> >
> >> > alvynng

>

Reply With Quote
  #9 (permalink)  
Old 05-23-2008, 11:17 PM
Vulcan
 
Posts: n/a
Re: How to separate numbers within a cells into column

Ya, it should, but it doesn't, depending on how the original cell is
formatted

"Gary''s Student" <GarysStudent@discussions.microsoft.com> wrote in message
news:F5BA40FB-4719-46CD-B95B-7BCD15E2D6BC@microsoft.com...
> It should work for both numbers AND text.
> --
> Gary''s Student - gsnu200787
>
>
> "Vulcan" wrote:
>
>> Presumably you're original number, 12345 is a number and not text. In
>> order
>> for the above formula to work, you need to either format the number as
>> text,
>> or use the text conversion in your formula.
>>
>> Assuming you have the desired number is Colum A, Row 9 and you want it
>> split
>> out into columns B9,C9,D9,E9 &F9 you could use:
>>
>> =MID(TEXT($A9,"0"),COLUMN()-1,1)
>>
>> in Colum B and copy to C,D,E&F
>>
>> Now, the result will be text in those columns so if you want them to be
>> numbers, you need to add a function to convert them into numbers which
>> would
>> look like this:
>>
>> =VALUE(MID(TEXT($A9,"0"),COLUMN()-1,1))
>>
>>
>>
>> "Alvyn" <Alvyn@discussions.microsoft.com> wrote in message
>> news:734FCE46-64B2-497E-8572-81EE89A8D2CC@microsoft.com...
>> > Dear Gary,
>> >
>> > It does not work as desire.
>> >
>> > Thanks
>> >
>> >
>> > "Gary''s Student" wrote:
>> >
>> >> Sorry
>> >>
>> >>
>> >> I should have said the value nust be in A2, not B1
>> >> --
>> >> Gary''s Student - gsnu200787
>> >>
>> >>
>> >> "Alvyn" wrote:
>> >>
>> >> > Hi
>> >> >
>> >> > I have search all the web but still cannot find a solution to this
>> >> > problem.
>> >> >
>> >> > I have a single cell containing the number -> 12345
>> >> >
>> >> > I wanted to either separate the number 1 into column A, 2 into
>> >> > Column
>> >> > B, 3
>> >> > into Column C and so on.
>> >> >
>> >> > Otherwise, if inserting a space between 1 and 2 and 3 and 4 and 5 is
>> >> > also
>> >> > fine.
>> >> >
>> >> > How to go about it?
>> >> >
>> >> > Any EXCEL experts here can please advise me?
>> >> >
>> >> > Thank you very much.
>> >> >
>> >> > alvynng

>>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:07 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Online Loans | Compare Credit Cards | Per Insurance | Gas Suppliers | Credit Card Consolidation



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114