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

Signature
SamuelT
Niek Otten - 23 Jan 2006 10:31 GMT
Use the "&" operator to concatenate texts (or the Concatenate function)

Signature
Kind regards,
Niek Otten
> Hi all,
>
[quoted text clipped - 9 lines]
>
> SamuelT
Max - 23 Jan 2006 10:33 GMT
> ='[Project1.xls]Dependencies'!$A$6, '[Project1.xls]Dependencies'!$A$7
Try something like:
='[Project1.xls]Dependencies'!$A$6 & ", " &
'[Project1.xls]Dependencies'!$A$7
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Hi all,
>
[quoted text clipped - 15 lines]
> SamuelT's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=27501
> View this thread: http://www.excelforum.com/showthread.php?threadid=503954
SamuelT - 23 Jan 2006 11:05 GMT
Thanks guys. I used:
='[Project1.xls]Dependencies'!$B$6& " - "
&'[Project1.xls]Dependencies'!$A$6
Much obliged!
SamuelT

Signature
SamuelT
Max - 23 Jan 2006 13:36 GMT
Glad you got what you wanted!
Thanks for posting back.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Thanks guys. I used:
>
[quoted text clipped - 10 lines]
> SamuelT's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=27501
> View this thread: http://www.excelforum.com/showthread.php?threadid=503954
Chip Pearson - 23 Jan 2006 15:30 GMT
Use
='[Project1.xls]Dependencies'!$A$6 &
'[Project1.xls]Dependencies'!$A$7

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
> Hi all,
>
[quoted text clipped - 12 lines]
>
> SamuelT