Google-sheets – wrong with this Google Sheet formula

google sheets

I'm working on a Google Sheet to use for stock trading and I want to have a cell that checks (W% equal or higher than L%) AND (L% equal or lower than 33%). I thought this formula would work but it doesnt, any idea what I am doing wrong?

enter image description here

Best Answer

IFS() rather than a simple IF() is the function to use. IFS() with AND evaluates multiple conditions and returns a value that corresponds to the first true condition.

reference