I just can’t figure this out. I want to figure out a value if a number in either of two cells meets a range of numbers. Example:
If A1 OR B1 = 1 thru 50 then 100 else 0
This is what I currently have:
=IF(OR(A1="1-350",B1="1-350"),35,0)
Any help, or suggestions?