MsgBox if TextBox is not empty

NDMDRB

Board Regular
Joined
Jun 20, 2016
Messages
164
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I have a userform with some textboxes and command buttons (one of them, "cmdClose")

I need to code the following scenario
If I click "cmdClose" and the textamount is greater than Zero, pop up msgbox with vbYesNo, if I click Yes, close the userform, else, do nothing
And if txtamount is Zero or null, close the userform without msgbox

I have the following code that works if the txtamount is greater than Zero, but if txtAmount is empty it does nothing

Code:
Private Sub cmdClose_Click()
If Me.txtAmount.Value > 0 Then


result = MsgBox("Are you sure?", vbYesNo + vbCritical, "Closing POS")
If result = vbYes Then
Unload Me
Else
End If
End If
End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try
Code:
If Val(Me.txtAmount.Value) > 0 Then
 
Upvote 0
It works the same,
Still if the txtamount is 0 or empty, the form doesn't close
 
Upvote 0
oops missed that bit, try
Code:
If Val(Me.txtAmount.Value) > 0 Then
   If MsgBox("Are you sure?", vbYesNo + vbCritical, "Closing POS") = vbNo Then Exit Sub
End If
Unload Me
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,185
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top