text and formula in the same cell for excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to do text and a small math formula in a single cell.

Simply enough something like: "Two times Two is" =2*2 or preferably Cell*Cell

Is this possible? and if so, how do I set it up so that the text stays text,
but the formula isn't read AS text?
 
Hi!

Maybe something like this:

="Two times two is "&2*2

or with cell references:

="Two times two is "&A1*B1

Now, this will evaluate to TEXT because that's exactly
what it is. The cell contains a formula that returns a
TEXT string.

Biff
 
And one more if you need to format the results.

="Two times two is: " & text(a1*a2,"0.00") & " for today: "
& text(today(),"mm/dd/yyyy")

(all one cell)
 

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

Back
Top