Trying to get VBA to select first item in a combobox. What do I need to add? Getting below error on this part at the end of code below:
Code:
: Worksheet.ComboBox1.ListIndex = 0
VBA Code:
If fixed_range.Row = n Or Not Intersect(ActiveCell, Range("B7")) Is Nothing Then MsgBox "That was a last step." & vbNewLine & "Back to step 1, for the next item in the Queue.", vbInformation, "Heads Up": Call ClearPBoard: Range("A11").Select: ActiveWindow.ScrollRow = ActiveCell.Row: Worksheet.ComboBox1.ListIndex = 0: Exit Sub