View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
bpeltzer
 
Posts: n/a
Default Can I insert a cell reference into a block of text?

I think you can do what you want with the TEXT function and concatenation
operator (&). Your formula would be something like
=A1 & " has been on the job for " & text(A2/365,"0.#") & " years."
This combines fixed text with variable data formatted to your specs.

"painterpat" wrote:

I need add several personalised statements a list of names. There are
several variations of each statement containing he/she, first name etc. The
results are then mailmerged with other standard information into a Word
document.

What I would like to do would be able to insert a cell reference for "First
Name" , "he/she" into the relevant place in each statement .

Any suggestions please?