![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 1
|
I have names in 3 separate columns,...B, C and D. I want to combine all 3 and place into column A. B is first name, C is middle name and C is last name. I have over 2500 names. I want all the names in Column A combined. (I hope this is making sense) Can't seem to figure out the formula for this. Any suggestions?
|
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Mar 2002
Location: =ActiveCell.Address
Posts: 478
|
Try
=CONCATENATE(B1," ",C1," ",D1) or =B1 & " " & C1 & " " & D1 in A1 and copy down (both do same thing) |
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,319
|
Quote:
=B2&" "&C2" "&D2 Give a double click on the little black square in the lower right corner of cell A2 in order to copy down. |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|