I have two columns of data and I wanted to identify the swap candidate based on two criteria:
- If first column < 0.5 OR
- If first column divided by second column < 10.
And here's my formula =IF(OR(E2<0.5,(E2/F2)<=10),"Swap Candidate"," ")
(The first and second column are in column E and F in the workbook). But the function doesn't work as it should. It instead returns all values as true while it's not. For example in the highlighted cell.

I also ran the formula evaluate for the highlighted cell. And it shows FALSE after evaluating the OR statement but then return the value if true.

The numbers are stored in the correct format. So I don't get what's going on with it. Could anyone help me out please?


@"Swap Candidate"do you?