How to specify numeric format in formula?

  • Thread starter Thread starter dog_tree_catharin
  • Start date Start date
D

dog_tree_catharin

I have a cell with the following:

="The value is $" & A6 & "."

Cell A6 is an integer and it's formatting is set to look like
"4,000.00". In the cell above that references A6 the value looks like
"4000".

How can I explicitly specify formatting in my "=" statement above?
Thanks!
 
Forgot: add the $ sign like this:
="The value is " & TEXT(A1,"$#,##0.00") & "."
 
Use text

="The value is "&TEXT(A6,"$#,##0.00")&"."

Regards,

Peo Sjoblom
 

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