Split binary numbers in different cells

cgcamal

Active Member
Joined
May 2, 2007
Messages
472
Hi everyone,

I have a matrix of binary numbers, Do you know how can I split every
binary number (e. g. 00101100011) putting in different cells?

Example:


Rich (BB code):
Original-->binary number splitted
--A1--->B1-C1-D1-E1-F1-G1 
001011--0--0---1--0--1--1

Thanks in advantage

Best regards
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Assuming the numbers are all the same digit size, something like this:

In B1: =left(A1,1)
In C1 =MID(A1,2,1)
In D1 =MID(A1,3,1)

etc.
 
Upvote 0
Did that really work for you when you tested it...didn't work for me but this does:

Ah Cra#! I missed a $

=MID(A1,COLUMNS($A1:A1),1)
should be
=MID($A1,COLUMNS($A1:A1),1)
 
Upvote 0

Forum statistics

Threads
1,215,178
Messages
6,123,484
Members
449,100
Latest member
sktz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top