run time error 381 invalid property array index

Patriot2879

Well-known Member
Joined
Feb 1, 2018
Messages
1,259
Office Version
  1. 2010
Platform
  1. Windows
Hi please can you advise where i have gone wrong on the code below i am getting a run time error 381 invalid property array index
Code:
Private Sub Workbook_Open()
Dim Rng As Range
With Sheets("Sheet2")
Set Rng = .Range(.Range("F2"), .Range("F" & Rows.Count).End(xlUp))

End With
With Sheets("Sheet1")
.ComboBox1.Clear
.ComboBox1.List = Rng.Value
    
End With

End Sub
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
The coding you supplied works correctly for me
Sheet1, Sheet2 & ComboBox1 exist - otherwise I would expect a different error

I suspect it is something in one of the ComboBox properties
- is there is a value against ListFillRange ?
- it would conflict with what the macro is doing and would cause an error (although my testing returned a different error message)
- delete that value, save, close and reopen the workbook

If there is not a value against ListFillRange then
- simply delete the combobox and create a new one (amend the code to point as ComboBox2 - or whatever the new ComboBox is called)
- do NOT change any properties until AFTER you have tested the code again
- save, close and re-open the workbook to test
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,907
Messages
6,175,301
Members
452,633
Latest member
DougMo

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