Text Formatting with Symbols

jski21

Board Regular
Joined
Jan 2, 2019
Messages
133
Office Version
  1. 2016
Platform
  1. Windows
Good day Excelers,

Why would the text formula in C6 not show the correct percentage? Should be -24.3%. Instead, it shows 0.0%:



Book1
ABC
21,681,2121,452,242
3991,453930,115-24.3%
4
5
60.0%▲
Sheet1
Cell Formulas
RangeFormula
C3C3=((B2-B3)/(A2-A3))-1
C6C6=TEXT((ROUND((B2-B3)/(A2-A3),0)-1),IF((B2-B3)/(A2-A3),"0.0%")&""&IF((B2-B3)<(A2-A3),"▲",IF((B2-B3)=(A2-A3),"●","▼")))


Thought I had everything right, but evidently not. Thanks.


jski
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Why would the text formula in C6 not show the correct percentage?
Because your rounding it to 0 decimals, which results in a value of 1, you then subtract 1 which gives 0
 
Upvote 0
You need to remember that percents are really decimals, i.e.
24.3% is really .243, so you need to round to 3 decimals.
 
Upvote 0
Thanks for the second set of eyes gentlemen. Been staring at this 5-taber for a while and this was helpful.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,556
Messages
6,125,495
Members
449,235
Latest member
Terra0013

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