Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,564
- Office Version
- 365
- 2016
- Platform
- Windows
I am receiving a "Could not set the List property. Invalid property array index." error with the line in red.
group_1 is the userform
ai_calibre is a combobox for which I am trying to assign it's dropdown values.
In this case, it is a single item.
I substituted with:
And got the same error.
Rich (BB code):
Case "OSL (Youth)" 'Ontario Soccer League (WMS administered)
group_1.ai_calibre.List = ws_lists.Range("D2").Value
group_1 is the userform
ai_calibre is a combobox for which I am trying to assign it's dropdown values.
In this case, it is a single item.
I substituted with:
Rich (BB code):
group_1.ai_calibre.List = "REP"
And got the same error.