TEXT question

jcl408

Board Regular
Joined
Jun 3, 2009
Messages
87
If I wanted to have a cell do a simple subtract and then have a space and then write "percentage points" next to it, how would I do that? This is what I have so far:

=TEXT((B54-$C$51),0%)&TEXT("percentage points",0)
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
If I wanted to have a cell do a simple subtract and then have a space and then write "percentage points" next to it, how would I do that? This is what I have so far:

=TEXT((B54-$C$51),0%)&TEXT("percentage points",0)
Try this...

=TEXT(B54-$C$51,"0%")&" percentage points"
 
Upvote 0
Is there a way to do it without the %? I want to say like "2 percentage points" and it's showing up as 2% percentage points which is confusing
 
Upvote 0
Or, maybe this :

=B54-$C$51&" percentage points"

so this is what im looking for but its displaying a ton of decimal points. I currently have it as:

=((B54-$C$51)*100)&" percentage points"

and its displaying 1.988840372974 heh
 
Upvote 0
Got it!

=TEXT(((B54-$C$51)*100),"0.00")&" percentage points"

thanks for your help everyone
 
Upvote 0
so this is what im looking for but its displaying a ton of decimal points. I currently have it as:

=((B54-$C$51)*100)&" percentage points"

and its displaying 1.988840372974 heh

Got it!

=TEXT(((B54-$C$51)*100),"0.00")&" percentage points"

thanks for your help everyone
Another possibility...

=ROUND((B54-$C$51)*100,2)&" percentage points"
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,813
Members
452,945
Latest member
Bib195

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