Concatenating %

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

Guest

I have two cells, showing a value of 5.25% and 6.75%.
I need it to show 5.25%/6.75%.
The problem is, the numbers will change.
If I use the concatenate function, it comes out as 0.528/0.0675.
I need to show as a percent.
 
Confused said:
I have two cells, showing a value of 5.25% and 6.75%.
I need it to show 5.25%/6.75%.
The problem is, the numbers will change.
If I use the concatenate function, it comes out as 0.528/0.0675.
I need to show as a percent.

Does the following do it for you?

=text(5.25/100,"0.00%") & "/" & text(6.75/100,"0.00%")

Of course, 5.25/100 and 6.75/100 can be replaced by any numerical
expression.
 
One way ..

Assuming source data in A1:B1,
put in C1:
=TEXT(A1,"0.00%")&"/"&TEXT(B1,"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

Similar Threads


Back
Top