Displaying Multiple Cell Information in Single Cell

  • Thread starter Thread starter SamuelT
  • Start date Start date
S

SamuelT

Hi all,

I'm trying to present (text) data from multiple cells in another
workbook in a single cell. I've tried the following formula but it
returns a #VALUE! in my destination cell:

='[Project1.xls]Dependencies'!$A$6, '[Project1.xls]Dependencies'!$A$7

Any ideas on if this is possible?

TIA,

SamuelT
 
Use the "&" operator to concatenate texts (or the Concatenate function)
 
='[Project1.xls]Dependencies'!$A$6, '[Project1.xls]Dependencies'!$A$7

Try something like:
='[Project1.xls]Dependencies'!$A$6 & ", " &
'[Project1.xls]Dependencies'!$A$7
 
Thanks guys. I used:

='[Project1.xls]Dependencies'!$B$6& " - "
&'[Project1.xls]Dependencies'!$A$6

Much obliged!

SamuelT
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top