1. The spinner in your sheet's current value is already bi-directionally linked to cell L9; click the spinner and L9 will change, change L9 and the spinner's value will change.Is it possible to link the Current value and Incremental Change fields to a cell in the spreadsheet?
ActiveSheet.Spinners("Spinner 1").SmallChange = Range("G5").Value
ActiveSheet.Spinners("Spinner 1").LinkedCell = Range("I5").Address
ActiveSheet.Spinners("Spinner 1").LinkedCell = "M9"
With ActiveSheet.Spinners("Spinner 1")
.Value = Range("H5").Value
.LinkedCell = "H5"
End With