+ Reply to Thread
Results 1 to 8 of 8

extracting a number from an 8-digit number in a cell

  1. #1
    Registered User
    Join Date
    06-16-2011
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2003
    Posts
    4

    extracting a number from an 8-digit number in a cell

    Hi guys, I'm an excel newbie.
    i want to extract every digit of a 8bit binary number in A1 to its adjacent cells.

    _ _ A1_ _ _ _ A2_ _ _ A3_ _ _ A4_ _ _ A5_ _ _ A6_ _ _ A7_ _ _ A8_ _ _ A9_
    10101010 _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _

    or better yet if there is a way i want to directly extract a hex number into binary number, but each digit in the resulting binary is shown consecutively on the adjacent number.

    _ _ A1_ _ _ _ A2_ _ _ A3_ _ _ A4_ _ _ A5_ _ _ A6_ _ _ A7_ _ _ A8_ _ _ A9_
    _ _ AA_ _ _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _ _ _ _ 1 _ _ _ _ 0 _

    please help.

  2. #2
    Forum Expert
    Join Date
    12-23-2006
    Location
    germany
    MS-Off Ver
    XL2003 / 2007 / 2010
    Posts
    6,326

    Re: extracting a number from an 8-digit number in a cell

    Hi and welcome to the board

    Your first question can be solved using Data - Text to columns - fixed width - and follow the wizard

  3. #3
    Registered User
    Join Date
    06-16-2011
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: extracting a number from an 8-digit number in a cell

    thanks arthurbr. i'm working on excel2007 and i'm quite new to the thing.
    could you be more specific?

  4. #4
    Valued Forum Contributor
    Join Date
    10-13-2010
    Location
    Sunderland, England
    MS-Off Ver
    Excel 2007 (Home) / 2003 (Work)
    Posts
    740

    Re: extracting a number from an 8-digit number in a cell

    Your best bet would be to set up a 2 column table with hex numbers and associated binary numbers, as I don't think (as far as I'm aware) excel has these number formats built in.

    Once you have your table (say in columns J&K), use the following formula in B1:

    =mid(vlookup($A1,$J:$K,2,false),column()-1,1)

    You can then drag this along to column I and this should work. Bear in mind the "column()" reference is dynamic, so if you move this to a different column it won't work. You can change the "column()-1" to just "1", "2", "3", etc. for each column if you want this to be static.

    Hope this helps.

  5. #5
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: extracting a number from an 8-digit number in a cell

    either text to columns as suggested or in b2 dragged across to I2
    =MID($A2,COLUMN(A1),1)
    if you want it downwards in a2..a3..a4..a5.....
    in a2
    =MID(A$1,ROW(A1),1)

    or direct from HEX
    with hex in a1
    in a2 dragged down
    =MID(HEX2BIN(A$1),ROW(A1),1)
    the hex2bin function requires the analysis tool pack activated in excel 2003
    tools/add-ins make sure analysis toolpack is selected
    Last edited by martindwilson; 06-16-2011 at 05:17 AM.
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  6. #6
    Registered User
    Join Date
    06-16-2011
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: extracting a number from an 8-digit number in a cell

    brokenbiscuits, thanks very much. i know it is most probably my fault but your
    suggestion didn't work for me. thanks very much anyway, appreciate very much.
    martindwilson, your solution is simpler, and it works!
    can i ask one more thing?
    what is the difference between A$1 and $A1 parameters?
    Thanks so much for the help, i think excel is beginning to look useful.

  7. #7
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: extracting a number from an 8-digit number in a cell

    read here about Relative And Absolute References In Formulas


    http://www.cpearson.com/excel/relative.aspx

  8. #8
    Registered User
    Join Date
    06-16-2011
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: extracting a number from an 8-digit number in a cell

    got it, thanks very much.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1