Need help with this code, it counts only the second after "And".And if it possible to do like if cell("2.3")<point
reenter
else
Range..
Is it possible to do aritmetics with cells or do smth with other operators?
Sub hugo()
Dim point As Double
InputBox ("Enter The Closing Point(Between 1.1-1.6)")
If point >= 1.1 And point < 1.6 Then
MsgBox ("Reenter point")
InputBox ("Enter The Closing Point")
Else
Range("D25").Value = InputBox("Enter The Closing Point(Between 1.1-1.6)")
End If
End Sub