Snake Eyes
Board Regular
- Joined
- Dec 14, 2010
- Messages
- 118
- Office Version
- 365
- 2016
- Platform
- Windows
In this formula I'm trying to check for a number entered in D43 that is outside the range of -150 and 250 OR if the text entered is not NL.
The problem is that any number entered is going to return true since it's not = NL even if the number is outside the range.
How do I account for a mix of text and numbers in the statement, which is where I think the problem lies?
Excel Formula:
=IF(D43<>"NL","Complete the checklist",IF(OR(D43<=-150,D43>=250),"Outside range - complete checklist","next check"))
The problem is that any number entered is going to return true since it's not = NL even if the number is outside the range.
How do I account for a mix of text and numbers in the statement, which is where I think the problem lies?