Show "Yes" or "No" vs. "True" or "False"

Dmichaud61

Board Regular
Joined
Mar 7, 2014
Messages
69
Office Version
  1. 2016
Platform
  1. Windows
Greetings,

How do I modify the below formula to show Yes or No vs. True or False? The formula currently works, but shows True or False vs. Yes or No.

=IF(G2="Test",L2>=PERCENTILE($L$913:$L$1911,0.75))

Thanks!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
You can just add another IF:

=IF(G2="Test",IF(L2>=PERCENTILE($L$913:$L$1911,0.75),"Yes","No"),"No")
 
Last edited:
Upvote 0
Your formula returns L2>=PERCENTILE($L$913:$L$1911,0.75) if true, do you want to change that to Yes?

If you just want to add "No", then

=IF(G2="Test",L2>=PERCENTILE($L$913:$L$1911,0.75),"No")
 
Upvote 0

Forum statistics

Threads
1,215,359
Messages
6,124,488
Members
449,166
Latest member
hokjock

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