How do I format a value when using it within a cell reference tha.

P

packmule

I have a value in Cell B1 that is expressed as dollars such as $52,344. I
would like to format this value within a formula that returns text. For
example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"."

Now I want the value in B1 to be reflected within the results of my formula.
I want the result to read: The sum that is in Cell B1 is $52,344.

How do I do this?
 
B

Bob Phillips

="The sum that is in Cell B1 is "&TEXT(b1,$#,##0.00")&"."

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
A

AndreasN

Ο "packmule said:
I have a value in Cell B1 that is expressed as dollars such as $52,344. I
would like to format this value within a formula that returns text. For
example in Cell B2, I would put ="The sum that is in Cell B1 is "&b1&"."

Now I want the value in B1 to be reflected within the results of my
formula.
I want the result to read: The sum that is in Cell B1 is $52,344.

How do I do this?

="The sum that is in Cell B1 is "&DOLLAR(B1)&"."
 

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