Display contents of cell in another cell as part of text string?

M

mschmidt

How can I display the contents of a cell in another as part of a text
string.

Such as... "The answer is "B4""

where B4 is the contents of cell B4?

Thanks
 
R

RagDyeR

Try this:

="The answer is "&B4

Note <space> after "is".
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

How can I display the contents of a cell in another as part of a text
string.

Such as... "The answer is "B4""

where B4 is the contents of cell B4?

Thanks
 
S

SteveW

How can I display the contents of a cell in another as part of a text
string.

Such as... "The answer is "B4""

where B4 is the contents of cell B4?

Thanks

="The answer is " & B4
 
D

daddylonglegs

Try

="The answer is "&B4

or, if you want to format B4 in a specific way e.g. with 2 decimal
places something like

="The answer is "&TEXT(B4,"###.00")
 

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

Top