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 N will need to be (0.12).
The value in brackets will change.
Also, if possible, I would like that the value displayed in column N is taken from a table that would be in another tab of the same sheet.
Thanks a lot for helping!
7 Replies
Sort By
Is (0 - 84.9%) a literal text value or does it stand for the range from 0% to 84.9%?
- elmai735Copper Contributorit's just a text value. I will have to use the following:
0 - 84.9%
85 - 94.9%
95 - 99.9%
100%
RepetitionCreate 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.