Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select Case Sheet9.Range("N" & y).Value
Case Is <= 0.05
' Value MUST BE <= 0.05
Case Is <= 0.1
' Because the previous test failed, we know
' the Value MUST BE > 0.05 and will only land
' here if it is also <= 0.1
Case Is <= 0.25
' Because the previous tests failed, we know
' the Value MUST BE > 0.1 and will only land
' here if it is also <= 0.25
Case Else
' Because the previous tests failed, we know
' the Value MUST BE > 0.25. Additional tests
' could be added for more value ranges
End Select