Hey Tim Give this a try
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
' Check if the entered number in TextBox1 is greater than 65
If IsNumeric(TextBox1.Text) AndAlso CInt(TextBox1.Text) > 65 Then
' If true, display "Good" in TextBox2
TextBox2.Text = "Good"
Else
' If false, clear TextBox2
TextBox2.Text = ""
End If
End Sub
If this helps kindly accept the answer thanks much.