If formula to check percentage

exceluser9

Active Member
Joined
Jun 27, 2015
Messages
388
Hi there, I have a data like this, I have put a formula in column D to chack the percentage difference of column b and column c, in column E I need a formula as per my requirement mentioned in Column E. Please help

Please help
NUMBER 1NUMBER 2PERCENTAGEFORMULA
21.145.00%Less than 50% it should say YES in this cell
4250.00%Between 50% to 50.99% it should say YES in this cell
3233.33%Between 33.00% to 33.99% it should say YES in this cell
5260.00%More than 50% it should say it should say YES in this cell

<tbody>
</tbody><colgroup><col><col><col><col></colgroup>
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hi there, I have a data like this, I have put a formula in column D to chack the percentage difference of column b and column c, in column E I need a formula as per my requirement mentioned in Column E. Please help

Please help
NUMBER 1NUMBER 2PERCENTAGEFORMULA
21.145.00%Less than 50% it should say YES in this cell
4250.00%Between 50% to 50.99% it should say YES in this cell
3233.33%Between 33.00% to 33.99% it should say YES in this cell
5260.00%More than 50% it should say it should say YES in this cell

<tbody>
</tbody>
By the looks of your request, the "rule" for each row is different to obtain a "YES" answer. As such I dont think a single formula is going to help you here. It looks like you would need to tailor the formula required for each individual row.
 
Upvote 0
Hi there, I have a data like this, I have put a formula in column D to chack the percentage difference of column b and column c, in column E I need a formula as per my requirement mentioned in Column E. Please help

Please help
NUMBER 1NUMBER 2PERCENTAGEFORMULA
21.145.00%Less than 50% it should say YES in this cell
4250.00%Between 50% to 50.99% it should say YES in this cell
3233.33%Between 33.00% to 33.99% it should say YES in this cell
5260.00%More than 50% it should say it should say YES in this cell

<tbody>
</tbody>

=IF(D3<50,"Yes","No")Less than 50
=IF(AND(D4>50,D4<60),"Yes","no")Between 50 to 50.99
=IF(AND(D5>33,D5<34),"Yes","no")
Between 33 to 33.99
=IF(D6>50,"Yes","No")GReater than 50

<tbody>
</tbody>
 
Upvote 0
You need to write a Nested IF Statement

Syntax:
Code:
[COLOR=#333333][FONT=Menlo]IF( condition1, value_if_true1, IF( condition2, value_if_true2, value_if_false2 ))[/FONT][/COLOR]

Example: Nested If in Excel - Easy Excel Tutorial

Note: You can nest upto 7 IF functions to create a complex IF THEN ELSE statement.
 
Upvote 0
Hi Sir,

Formula is not working

NUMBER 1NUMBER 2PERCENTAGEFORMULA
21.145.00%Less than 50% it should say yes, more tha 50% it should say no
4250.00%equal to 50% and between 50 % to 50.99% it should say yes if not no
3233.33%equal to 33% and between 33% to 33.99% it should say yes if not no
5260.00%More than 51% it should say yes if less than 50% it should say no

<tbody>
</tbody><colgroup><col><col><col><col><col></colgroup>
 
Upvote 0

Forum statistics

Threads
1,215,633
Messages
6,125,922
Members
449,274
Latest member
mrcsbenson

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