concatenate formulas

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

Guest

In my formula I copied a cell that was formatted with a percentage. When I
finished the concatenate formula the cell that was input was in a decimal
format. How do I keep the format of the cell when linking it to the
concatenate formula?
 
If it is a numeric cell (rather than text) Excel uses the base numeric format
when you convert it to string in a formula. But you can specify the format
by using the TEXT function - if the value in A1 is your percentage you could
do this:
="The resulting rate is "&TEXT(A1,"##0.0%")
 
=TEXT(A1,"0%")&B1

as an example

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"(e-mail address removed)"
 

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