excel - I need help withcombined formula -
combining following functions:
- write vlookup formula return value based on output (column d)
i have: part
- formula 2: write formula (using or function), states, if column d = "blue" or column e >=4 "yes", otherwise "no"
so have:
- =vlookup("red",$a3:$d6,2,false)
- =if(or(d3="blue",e3>=4),"yes","no")
- ?
without seeing table, unsure of trying accomplish there more 1 way combine these equations. if guessed right, vlookup returns numeric value e column. if statement looks color blue or value larger 4 vlookup. if case, try this
=if(or(vlookup("red",$a2:$d5,2,false)>=4,d3="blue"),"yes","no")
Comments
Post a Comment