Forum Discussion
Cindy Dillard
Sep 15, 2018Copper Contributor
I need Formula help....
I and trying to create a formula by looking at two different cells, and based on the number there, putting the answer into a different cell. Seems pretty simple to me, but just can't make it work....
Lorenzo Kim
Sep 15, 2018Bronze Contributor
=IF(E18>=2 & E19>=8,"You got TWO blocks!!"," ")
TRY:
=IF(AND(E18>=2,E19>=8),"You got TWO blocks!!"," ")
HTH