+ Reply to Thread
Results 1 to 6 of 6

combining two cell

Hybrid View

  1. #1
    Registered User
    Join Date
    09-02-2009
    Location
    concord, ontario
    MS-Off Ver
    Excel 2003
    Posts
    6

    combining two cell

    I have a text in cell b1 and c1 ie b1 (00 no freight) c1 (charge). I need to combine to read no freight charge. Can anyone help me.
    Last edited by domvar22; 09-04-2009 at 09:00 AM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: combining two cell

    Try:

    =B1 & " " & C1
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    09-02-2009
    Location
    concord, ontario
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: combining two cell

    thanks, almost there, now I have to get rid of the 00

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: combining two cell

    The problem with 1row questions is the answer may be too simplistic. Are you saying you will always want everything in cell B1 except the first three characters (the 00 and the space)?

    If so, try:

    =MID(B1,4,50) & " " &C1

    Or if the number of characters change and you want everything after the first "space", then use:

    =MID(B1,FIND(" ",B1)+1,999) & " " & C1

  5. #5
    Registered User
    Join Date
    09-02-2009
    Location
    concord, ontario
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: combining two cell

    It worked, Thanking JBeaucaire.

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,053

    Re: combining two cell

    Please make thread [solved]
    Never use Merged Cells in Excel

+ 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