split cell data?

R

Ron Rosenfeld

Hi:
Can I split a cell with text, then a formula, then with more text? If so how?

Please post an example of the original cell content, what you want as output,
and where you want the output stored.
--ron
 
T

T. Valko

Follow this general syntax:

="Text "&FORMULA&" text"

For example:

="Today is day "&DAY(NOW())&" of the month"

Returns:

Today is day 25 of the month
 
Top