Try this...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)
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
Another possibility...Got it!
=TEXT(((B54-$C$51)*100),"0.00")&" percentage points"
thanks for your help everyone