Forum Discussion
elmai735
Feb 02, 2022Copper Contributor
IF formula with multiple conditions
Hey guys, I'm definitely not good at this and would need some kind help from you. Is there a formula that says: IF column F has name (MARIO) and column N has the value (0 - 84.9%) then column ...
elmai735
Copper Contributor
it's just a text value. I will have to use the following:
0 - 84.9%
85 - 94.9%
95 - 99.9%
100%
Repetition
0 - 84.9%
85 - 94.9%
95 - 99.9%
100%
Repetition
HansVogelaar
Feb 02, 2022MVP
Create a lookup table like this, on a sheet named (for example) List:
On the other sheet, enter the following formula in row 2 in the column where you want to return the result:
=IF(F2="Mario", IFERROR(VLOOKUP(N2, List!$A$1:$B$5, 2, FALSE), ""), "")
This can be filled down.
- elmai735Feb 02, 2022Copper Contributor
thanks HansVogelaar ! it doesn't seem to work though, no error, just empty result 😞
Could you please also show me the simple version without the Vlookup in case I want to add the table on the same sheet?
thanks so much for helping!- HansVogelaarFeb 02, 2022MVP
It would work the same with the table on the same sheet. Here is my test workbook.
- elmai735Feb 04, 2022Copper Contributor