Problem with script?

ExcelNovice

Well-known Member
Joined
May 12, 2002
Messages
583
The following macro works fine, except that I have to click OK two times to close the msg box, can anyone say why this is so?
This is the script:

Private Sub Worksheet_Change(ByVal Target As Range)

If Range("ax84").Value = "" Then

MsgBox "Please enter your reason before continuing."

End If

End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi Novice,

The code as is it should only execute once when a cell on your worksheet is manually edited. The reason it is running twice is probably simply that the MsgBox prompt tells the user to enter a reason before continuing. So I assume the user clicks OK and enters a reason into a cell other than AX84. Since this entry changes the worksheet again it triggers the Change event again and the message pops up again. If you want the Change event to ignore this second entry your code should test for it. Since you didn't mention what you were trying to accomplish I can't recommend code to do this, but hopefully the explanation above will help.
 
Upvote 0

Forum statistics

Threads
1,215,590
Messages
6,125,707
Members
449,251
Latest member
Herushi

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