Forum Discussion
infinity94
May 26, 2021Copper Contributor
Countifs and match help needed
Hi all, I am trying to create a formula that would tell me if any of the names on my first sheet are in sheet 2 or 3. If they are I want a "no" and if they aren't I want a yes. I tried Countifs and...
infinity94
May 26, 2021Copper Contributor
sorry need some more help with this.
updated workbook: https://1drv.ms/x/s!AgSn2Fjy1lHAeoCajIPex8-4AB0?e=KuUzgz
what i am trying to achieve: i have a drop down on the right and if I select Party 1 I want everything that has % free less than 80% and score 10 or above to show as yes, otherwise No.
If i select party 3 I want everything that has % free less than 80% and score 9 or above to show as Yes otherwise as No. can you help me with that please?=IF(C2="No","No",IF(AND(D2<80,E2>O4),"Yes","No"))
updated workbook: https://1drv.ms/x/s!AgSn2Fjy1lHAeoCajIPex8-4AB0?e=KuUzgz
what i am trying to achieve: i have a drop down on the right and if I select Party 1 I want everything that has % free less than 80% and score 10 or above to show as yes, otherwise No.
If i select party 3 I want everything that has % free less than 80% and score 9 or above to show as Yes otherwise as No. can you help me with that please?=IF(C2="No","No",IF(AND(D2<80,E2>O4),"Yes","No"))
HansVogelaar
May 26, 2021MVP
The formula in O4 should be
=IF(O5="Party 1", 10,9)
(The result must be a number, not a text value).
And in F2:
=IF(C2="No","No",IF(AND(D2<80,E2>=$O$4),"Yes","No"))
or slightly shorter
=IF(OR(C2="No",D2>=80,E2<$O$4),"No","Yes")
Fill down from F2 to F4.
- infinity94May 26, 2021Copper Contributor
thank you! how do i add Party 2= 10 and party 3 equals 9 and 10?
=IF(O5="Party 1", 10,9)
if i use the above, then it will either be 9 or 10 but i need both so would be better to put greater or =9?
- HansVogelaarMay 26, 2021MVP