May 04 2023 08:34 AM
Hi,
I´m trying to write a simple formula along the lines of: IF((1<2<3), "ok", "x")
Why does excel return x and how do I rewrite it, so the excel returns ok?
Thanks
May 04 2023 08:42 AM
Solution=IF(AND(1<A1,A1<3), "ok", "x")
Does this return the intended result? Basically you have to reference the cell that you want to evaluate.
May 04 2023 08:56 AM
May 04 2023 09:15 AM