Combox is halting my Workbook

John4520

New Member
Joined
May 11, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
My project utilizes a VBA ComboBox that is used to open another workbook (choice of Workbooks). It is using a VLookUp to get the workbook location. The code works as intended but after the selected workbook opens, I'm not able to enter any data in the newly opened workbook. If I go back to the workbook with the combobox and close the combobox, I am able to enter data in the newly opened workbook. The combobox appears to remain active and not allow me to do anything until it is closed manually.

How do I halt the combobox?

Below is my code:
Private Sub CommandButton_Click()
Dim w As String
Dim s As String
w = cboProperty.Text
Set myrange = Range("a1:b8")
s = Application.WorksheetFunction.VLookup(w, myrange, 2, False)
Workbooks.Open s
End Sub.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Is the combobox on a worksheet, or on a userform?
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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