Hello!
I am trying to put together a IF function that uses 2 conditions, which results in 5 combinations. I hope somebody can help me.
This is how its supposed to work:
if C4=yes and C2>3 return “buy”
if C4=yes and C2<2 return “sell”
if C4=no and C2>2 return “buy”
if C4=no and C2<1 return “sell”
otherwise “keep”
I tried multiple ways to nest the conditions in one function but have failed miserably so far. Does anyone know how to do it?
Sophia