Format Result of a Formula Combining Text & Numbers

G

Guest

Trying to create a formula that concatenates text and an calculated
percentage.

=CONCATENATE("Percent Change"," = ",(ROUND(((E$28-B$28)/B$28),2)))

I want the result to output:

Percent Change = 1.0%

not

Percent Change = 0.01

How do I get the calculated percentage to show as a percent?
 
P

Peo Sjoblom

Replace what's right of the equals sign with

TEXT(ROUND(((E$28-B$28)/B$28),2),"0.00%")
 

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