+ Reply to Thread
Results 1 to 20 of 20

Combine information?

  1. #1
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Combine information?

    Hello,

    How can i combine cells and have them show in one cell in a certain order in one cell?

    Thanks in advance for your help!

  2. #2
    Valued Forum Contributor
    Join Date
    02-08-2012
    Location
    wales
    MS-Off Ver
    Excel 2007
    Posts
    964

    Re: Combine information?

    just use the & symbol

    eg

    A2&A3&B5

  3. #3
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Combine information?

    You can use concatenate or just the "&" sign after each cell to be combined. Do you have any specific examples you need help with?
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  4. #4
    Forum Expert
    Join Date
    09-27-2011
    Location
    Poland
    MS-Off Ver
    Excel 2007
    Posts
    1,312

    Re: Combine information?

    Hi
    using this symbol "&" I think You will get what You need
    Regards

    tom1977

    If You are satisfied with my solution click the small star icon on the left to say thanks.

  5. #5
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    Where do i put the and symbol? I am basically trying to get colum A to combine with b and c but i want the data to show in a certain order ie. A then B then C.

  6. #6
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Combine information?

    In D2, put =A2&B2&C2

  7. #7
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    In cell D1 type -
    Please Login or Register  to view this content.
    then hit enter, if your info stretches more than just row 1, copy the formula downwards.
    Please note, doing the above will join all the info in the cell, with no spaces or separators, if you need to separate the info you will need to type
    Please Login or Register  to view this content.
    this will put a space between the info, you can use anything you like to separate the data.

    " " space
    "*" Star
    "." Full Stop
    "," Comma

    galvinpaddy
    Last edited by arlu1201; 04-04-2012 at 07:06 AM. Reason: Corrected code tags.

  8. #8
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    Sorry to be so stupid about this but how do i get it to do it for the whole spreadsheet? I really appreciate your help btw.

  9. #9
    Valued Forum Contributor
    Join Date
    02-08-2012
    Location
    wales
    MS-Off Ver
    Excel 2007
    Posts
    964

    Re: Combine information?

    you set up one cell then click the bottom right hand side of the cell and drag as required

  10. #10
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    @ arlu1201 - Apologies and thanks.

    @ Percocet7 - see image attached. put your mouse icon over the bottom right corner of the cell, wait for it to change into a black plus sign, then double click (or you can click, hold, and drag downwards
    Attached Images Attached Images

  11. #11
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    Also, no need for apologies, we all have to start somewhere with Excel! the best way to learn is probably through the experience of others.

  12. #12
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    I tried your suggestion gavinpaddy and it did not work, it just copied the code down the cells.

  13. #13
    Valued Forum Contributor
    Join Date
    02-08-2012
    Location
    wales
    MS-Off Ver
    Excel 2007
    Posts
    964

    Re: Combine information?

    do you have a spreadsheet you could upload?

  14. #14
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    Hi

    This will only collate the info from Cells A1, B1 & C1.
    If you information is not in these cells, then change it to the correct cell reference, just another thought, the cells where you have typed the formula, are they formatted as general or text??
    probably best to load a sheet as twiggywales suggested!

  15. #15
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    I have uploaded the file, I am trying to combine C with D, E etc with spaces in between, then the next part will be to figure out how to add text to every cell before the text thats already in there or after it. I had a macro but i forgot how to do it =(
    Attached Files Attached Files

  16. #16
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    thanks for that, next question, the data that is combined, where do you want this?

  17. #17
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    ok, first attempt, i have inserted a new column between Type & rarity, this collates the info, the the column Type2 has been hidden from view.
    Is that what you wanted for one part of your request?
    Attached Files Attached Files

  18. #18
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    In any cell. The real file is a few MB so i really just need to know how to get it done so i can do it to the real worksheet and fool around with it so i can add text to it then combine.

  19. #19
    Registered User
    Join Date
    04-04-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: Combine information?

    What are you doing to get them two together? It just combines them then you delete the old cells?

  20. #20
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    884

    Re: Combine information?

    Very simply put, if you have a worksheet, and in A1, B1 & C1 you have text, and in D1 you want to combine all text from A1, B1 & C1, separated by a space, you must type into cell D1 -
    Please Login or Register  to view this content.
    this will combine the info from all 3 with a space between them.

    Hope that helps
    Attached Files Attached Files
    Last edited by galvinpaddy; 04-04-2012 at 10:38 AM. Reason: Added sample

+ 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