the code below runs perfect on some pc. but there is an error 32809 on one of our laptop. there can be different error code everytime it runs on that laptop. any solution?
Code:
Sub tt()
With Sheets(1)
.ComboBox1.List = Application.Transpose(Range(.Cells(1, 5), .Cells(1, 22)))
.ComboBox2.List = Application.Transpose(Range(.Cells(1, 5), .Cells(1, 22)))
End With
End Sub