MsgBox not closing after pressing OK

KevinMMO

New Member
Joined
Mar 2, 2018
Messages
17
I'm doing a macro that compares the data in a range of cells and if that value is equal or more than 1, display a message, then clearing the field. The problem is that, after displaying the message, it can't be closed. Here's the code:


Option Explicit


Private Sub Worksheet_Change(ByVal Target As Range)

' Private Sub checar(ByVal Target As Range)



Dim rango As Range

For Each rango In Worksheets("HojadeInspection").Range("I9:I20")

If rango.Value >= 1 Then

MsgBox "Este dato ya se encuentra guardado en la base de datos"


Worksheets("HojadeInspection").Range("B9").ClearContents

End If
Next rango


End Sub
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,224,560
Messages
6,179,519
Members
452,921
Latest member
BBQKING

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