+ Reply to Thread
Results 1 to 4 of 4

concatenating "00"&"00"&"01" without losing the zero values

  1. #1
    kier
    Guest

    concatenating "00"&"00"&"01" without losing the zero values

    Hello!
    I need to combine a series of cells containing numerical zeros, but keep
    losing the zero places. For example, I need 00 01 00 01 to combine into one
    cell as 00010001. When I try the concatenate function I lose the zero and end
    up with 0101. I have formatted all the cells, but this doesn't seem to help.
    Any suggestions?

    Thanks!
    Desperately trying to finish analysis and ....thesis.

  2. #2
    CLR
    Guest

    Re: concatenating "00"&"00"&"01" without losing the zero values

    Pre-format all the cells as TEXT, then the CONCATENATE formula will work
    ok...........

    Vaya con Dios,
    Chuck, CABGx3


    "kier" <[email protected]> wrote in message
    news:[email protected]...
    > Hello!
    > I need to combine a series of cells containing numerical zeros, but keep
    > losing the zero places. For example, I need 00 01 00 01 to combine into

    one
    > cell as 00010001. When I try the concatenate function I lose the zero and

    end
    > up with 0101. I have formatted all the cells, but this doesn't seem to

    help.
    > Any suggestions?
    >
    > Thanks!
    > Desperately trying to finish analysis and ....thesis.




  3. #3
    Debra Dalgleish
    Guest

    Re: concatenating "00"&"00"&"01" without losing the zero values

    You can format each segment, e.g.:

    =TEXT(A1,"00")&TEXT(B1,"00")&TEXT(C1,"00")&TEXT(D1,"00")

    kier wrote:
    > Hello!
    > I need to combine a series of cells containing numerical zeros, but keep
    > losing the zero places. For example, I need 00 01 00 01 to combine into one
    > cell as 00010001. When I try the concatenate function I lose the zero and end
    > up with 0101. I have formatted all the cells, but this doesn't seem to help.
    > Any suggestions?
    >
    > Thanks!
    > Desperately trying to finish analysis and ....thesis.



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  4. #4
    Dave Peterson
    Guest

    Re: concatenating "00"&"00"&"01" without losing the zero values

    One more way:
    =TEXT(A1*10^6 + B1*10^4 + C1*10^2 +D1,"00000000")



    kier wrote:
    >
    > Hello!
    > I need to combine a series of cells containing numerical zeros, but keep
    > losing the zero places. For example, I need 00 01 00 01 to combine into one
    > cell as 00010001. When I try the concatenate function I lose the zero and end
    > up with 0101. I have formatted all the cells, but this doesn't seem to help.
    > Any suggestions?
    >
    > Thanks!
    > Desperately trying to finish analysis and ....thesis.


    --

    Dave Peterson

+ 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