melewie
Board Regular
- Joined
- Nov 21, 2008
- Messages
- 188
- Office Version
- 365
- Platform
- Windows
Hi all,
I have a textbox (active x) on a worksheet I want this to be populate by a range (Country_RNG) when the workbook opens
This is on the 'This worksheet' object. Im getting runtime error 424. Any help would be great.
I have a textbox (active x) on a worksheet I want this to be populate by a range (Country_RNG) when the workbook opens
Code:
Private Sub Workbook_Open()
Sheets("Front Page").Select
Country_CBX.List = Range("Country_RNG").Value
End Sub
This is on the 'This worksheet' object. Im getting runtime error 424. Any help would be great.