A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Try code like the following:
With Worksheets("Sheet1").OLEObjects("SpinButton1").Object
.Value = .Value + 1
End With
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How does on use a macro to advance or step back a spinner control or scrollbar control?
I tried to record a macro whilst advancing such a control, but no code was recorded
Thanks in advance
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Try code like the following:
With Worksheets("Sheet1").OLEObjects("SpinButton1").Object
.Value = .Value + 1
End With
Thanks Chip, this put me on the right track