I need to go over all rows on Sheet1 in Column X, grab its value and then, see if value is BETWEEN numbers combination stored on Sheet 2 columns A and B. If value is between
You are looking for the expression "Exit". In this case, it looks like so:
For i = 1 to 10 [Do statements] [If Test] Exit For [End If] Next i
Exiting a loop in this way essentially works as though the code was jumped down to "Next i", with i already being equal to the maximum loop value.