tried
the message box also appears when textbox 1 is blank or i delete a value from it.
also tried
All i need it when the textbox has a value greater than 0 the message appears and if it isnt greater than 0 or is blank then nothing
Code:
If IsEmpty(Textbox1) Then
Else
If Textbox1.Value > 0 Then
MsgBox "****"
also tried
Code:
If TextBox1.Value = "" Then
Else
If TextBox1.Value > 0 Then
MsgBox "*** "
End If
End If