excel - I need help withcombined formula -


combining following functions:

  1. write vlookup formula return value based on output (column d)

i have: part

  1. formula 2: write formula (using or function), states, if column d = "blue" or column e >=4 "yes", otherwise "no"

so have:

  1. =vlookup("red",$a3:$d6,2,false)
  2. =if(or(d3="blue",e3>=4),"yes","no")
  3. ?

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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -