Forum Discussion

nerdyplayer's avatar
nerdyplayer
Copper Contributor
Sep 12, 2022
Solved

if else statement for 2 cells rows

I am working a on a blood pressure spreadsheet.

I have 2 rows of numbers, and i am trying to figure out how to quickly show which set of results will pass the criteria.

Column AColumn Bresults

102

76passing
14395

failing

11085passing
15687failing

 

The criteria is

Column A <140 AND column B <90 pass 

IF(resultsA <140,and (if(Result B<90), "pass", failed))

 

Resources