Combining text and cell value to create a sentence

G

Guest

In Excel 2000 I have something like the following:
A B C D Inc/Dec
1 April May YTD Goal
2 $75 $50 $10 $200 decreased

I'd like to form a sentence such as

Recoveries decreased from May to April.
I've tried "="Recoveries " &Text(E2) " from" &Text(B1) "to " &Text(A1)
But keep getting "too many arguments".

Any suggestions, or is this possible?
 
G

Guest

Simply
=Recoveries " & E2 &" from "& B1 & " to " & A1
the Text function is not needed here, but if you DO use it, it takes a 2nd
parameter, like
=TEXT(E20,"#,##0.00") or =TEXT(D12,"mm/dd/yyyy"), not just =TEXT(A1).
HTH
Bob Umlas
Excel MVP
 
G

Guest

YAY. Thanks Bob.

Bob Umlas said:
Simply
=Recoveries " & E2 &" from "& B1 & " to " & A1
the Text function is not needed here, but if you DO use it, it takes a 2nd
parameter, like
=TEXT(E20,"#,##0.00") or =TEXT(D12,"mm/dd/yyyy"), not just =TEXT(A1).
HTH
Bob Umlas
Excel MVP
 
G

Gord Dibben

Stephanie

="Recoveries " & E2 & " from " & B1 & " to " & A1


Gord Dibben Excel MVP
 

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