Page 1 of 1
Excel: Can one cell include information from 3 other cells?
Posted: Fri Feb 03, 2012 12:05 pm
by Charles L. Cotton
Is there a way to "import" information from 3 cells one sheet of an Excel spreadsheet to a single cell on another sheet? My online class registration captures names in three separate fields (first, last, MI) and I need to combine all of that data into one input sheet for the automated CHL-100 and CHL-8. To complicate matters, I need to add a comma so I can present it as "last, first, middle initial" in the one data input cell.
I've searched and can't find anything. Can this be done? If not, revising the automated CHL-100, CHL-8 is going to be a major project.
Thanks,
Chas.
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 12:14 pm
by seamusTX
If you had the last name in column A, the first name in column B, and the middle intial or name in column C, it would be like this:
=A2&", "&B2&" "&C2
- Jim
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 12:40 pm
by sugar land dave

good job!
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 12:43 pm
by Charles L. Cotton
If I needed perform a DIY knee surgery, I'm convinced I could get you guys to tell me how to do it!
Thanks Jim,
Chas.
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 12:51 pm
by seamusTX
You're welcome. I'm glad I could help.
- Jim
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 12:51 pm
by Keith B
Start with a 1911, aim at knee, pull trigger, put in new replacement knee.
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 1:36 pm
by Crossfire
Keith B wrote:Start with a 1911, aim at knee, pull trigger, put in new replacement knee.
ouch
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 1:53 pm
by bayouhazard
There's also a concatenate function in Excel but i usually use the method seamusTX showed.
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 2:01 pm
by JJVP
Keith B wrote:Start with a 1911, aim at knee, pull trigger, put in new replacement knee.
You're supposed to take a shot of whiskey and hold a bullet between your teeth before you do that.

Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 4:51 pm
by PBratton
bayouhazard wrote:There's also a concatenate function in Excel but i usually use the method seamusTX showed.
Concatenate is my favorite function for this type of data gathering. What can I say, I'm a geek...
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 5:08 pm
by seamusTX
To paraphrase Einstein, everything should be as simple as possible, but no simpler.
Actually I would bag Excel and use OpenOffice, but the technique would be the same. It's nearly the same as VisiCalc 1.0 and Lotus 1-2-3.
- Jim
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 5:31 pm
by Keith B
seamusTX wrote:To paraphrase Einstein, everything should be as simple as possible, but no simpler.
Actually I would bag Excel and use OpenOffice, but the technique would be the same. It's nearly the same as VisiCalc 1.0 and Lotus 1-2-3.
- Jim
Does that still exist? That was the only spreadsheet program choice when I took my MIS classes back in the 80's. Pre Excel popularity.
Re: Excel: Can one cell include information from 3 other cel
Posted: Fri Feb 03, 2012 7:12 pm
by seamusTX
I don't know if Lotus 1-2-3 will run on a current version of Windows. I haven't seen it anywhere since maybe 1990. According to the googles, its successor is an IBM product called Lotus SmartSuite.
- Jim
Re: Excel: Can one cell include information from 3 other cel
Posted: Sat Feb 04, 2012 12:13 am
by terryg
If you want a current alternative, Google Doc's works pretty well. But no other product has all the features of Excel for really advanced formulas.
Re: Excel: Can one cell include information from 3 other cel
Posted: Mon Feb 13, 2012 1:38 pm
by CHLnVet
You can also use the =CONCATENATE function in Excel
CONCATENATE(text1,text2,...)
Argument
Description
text1,text2,...
1 to 255 text items to be joined into a single text item. The text items can be text strings, numbers, or single-cell references.
General remarks
The "&" operator can be used instead of CONCATENATE to join text items.
Example
To make the following example easier to understand, you can copy the data to a blank sheet and then enter the function underneath the data. Do not select the row or column headings (1, 2, 3... A, B, C...) when you copy the sample data to a blank sheet.
1
2
3
4
A B
Data
brook trout
species
32
Formula Description (Result)
=CONCATENATE("Stream population for ",A2," ",A3," is ",A4,"/mile") Concatenates a sentence from the data above (Stream population for brook trout species is 32/mile)