I've come up with what I think is getting me close.
If I was trying to add text I know to use rng.offset, but I don't know how to incorporate rng.offset in the code above. Am I close?
In the end, I want a button in each cell E3:P3
VBA Code:
Dim i As Long, rng As Range
Set rng = Range("E3")
For i = 1 To 12
ActiveSheet.Buttons.Add(Range("E3").Left, Range("E3").Top, Range("E3").Width, Range("E3").Height).Select
Selection.OnAction = "Hide"
Selection.Characters.Text = "Hide"
Next i
If I was trying to add text I know to use rng.offset, but I don't know how to incorporate rng.offset in the code above. Am I close?
In the end, I want a button in each cell E3:P3