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

  • Thread starter Thread starter mschmidt
  • Start date Start date
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
 
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
 
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
 
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")
 
Back
Top