formula lookup

Tripleseas

Board Regular
Joined
Jul 12, 2022
Messages
87
Office Version
  1. 2013
Platform
  1. Windows
hello comunity,
I want to write a formula in C column that will do the following :

Depending on each line , the formula need to look in the parametres table if that line is groupe 1 and the % is higher than 200% then its eligibile other than that its not.

the formula need to be flexible so when i change the parameters in the table the results will be updated.

thank you


Classeur1
ABCDEFG
1groupe%éligible yes or no
2Groupe 184%NO
3Groupe 196%
4Groupe 1103%Groupes% range
5Groupe 1104%Groupe 1> 200%
6Groupe 1135%Groupe 2> 150%
7Groupe 173%Groupe 3> 130%
8Groupe 1130%
9Groupe 1120%
10Groupe 1131%
11Groupe 1144%
12Groupe 180%
13Groupe 1177%
14Groupe 189%
15Groupe 1114%
16Groupe 193%
17Groupe 1166%
18Groupe 294%
19Groupe 299%
20Groupe 2120%
21Groupe 2135%
22Groupe 284%
23Groupe 2125%
24Groupe 2152%YES
25Groupe 2114%
26Groupe 2100%
27Groupe 2103%
28Groupe 386%
29Groupe 3109%
30Groupe 3131%
31Groupe 379%
32Groupe 381%
33Groupe 389%
34Groupe 3135%
35Groupe 3121%
36Groupe 389%
37Groupe 393%
38Groupe 3174%
39Groupe 395%
40Groupe 398%
41Groupe 3101%
Feuil1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
B2:B41Other TypeDataBarNO
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Change the values under Column G to 200%, 150%, 130% (remove the greater than sign)

Excel Formula:
=IF(B2>VLOOKUP(A2, $F$5:$G$7, 2, FALSE), "Yes", "No")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,394
Messages
6,124,683
Members
449,180
Latest member
kfhw720

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