Concatenate 2 values into % Format

cogumelo

Board Regular
Joined
Mar 23, 2006
Messages
181
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have this formula, where i'm comparing 2 values but i want them to show in % format:

IFERROR(1-(V10-Z10)/(AA10/1,23);"")&" ("&IFERROR(1-(T10-Z10)/(AA10/1,23);"")&")"

instead of appearing like this:
0,192345 (0,231234)

i want them formatted like this:
19,23% (23,12%)

Tried to do it with TEXT Function but i'm not being able to do it.

Can anyone help out?

thx in advance
cogumelo
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
That doesn't seem like a valid formula to me

Regardless, you could do something along the lines of
Code:
IFERROR((YOURFORMULA)*100 & "%","")
This simply multiply the output of the formula by 100 and add the percentage symbol
 
Upvote 0
One more question, though, how do I limit the number of characters?

change it from 19,4762108872696% to 19,48%
thx in advance
 
Upvote 0
For this use LEFT(formula,5)*100&"%"

I wonder however, why don't you just change the cell's format to percentage?
 
Last edited:
Upvote 0
Hi! Thx again.

I'm doing it because i need to put 3 different % values in the same cell coming from different calculations.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,884
Messages
6,181,568
Members
453,053
Latest member
Kiranm13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top