VBA: Auto answer pop up message

datastudent

Board Regular
Joined
Sep 7, 2021
Messages
87
Office Version
  1. 365
Platform
  1. Windows
Hi,

How do I automatically answer OK on my pop?

Here is the action that triggers the pop up message.

.Columns("B:B").TextToColumns Destination:=Range("B1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _
:=Array(1, 1), TrailingMinusNumbers:=True
 
You can temporarily suppress alerts by inserting this line before the code you have above:
VBA Code:
Application.DisplayAlerts = False

Then add this line after that, to turn them back on:
VBA Code:
Application.DisplayAlerts = True
 
Upvote 0
Solution
You can temporarily suppress alerts by inserting this line before the code you have above:
VBA Code:
Application.DisplayAlerts = False

Then add this line after that, to turn them back on:
VBA Code:
Application.DisplayAlerts = True
Thanks! It works! :)
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,226,771
Messages
6,192,919
Members
453,767
Latest member
922aloose

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