Forum Discussion
Natalie_Asher
Feb 15, 2024Copper Contributor
Help with IF/OR Statement
Hello, I am looking for some help with an IF statement. I want column H to display Y if F>=G, but display N if A is True (displays as True when the box in B is checked). I am getting the correct res...
- Feb 15, 2024
=IF(OR(A2, F2<G2), "N", "Y")
HansVogelaar
Feb 15, 2024MVP
=IF(OR(A2, F2<G2), "N", "Y")
- Natalie_AsherFeb 15, 2024Copper Contributor
HansVogelaar Thank you very much. So helpful!