I found the code below and messed with it a bit and messed up my worksheet. If someone knows where I can make something encouraging show up on the screen that'd be a good a start (For now, I can't even consider what I tried a "start", yet!) Thanks for any suggestions, at all.
Option Explicit
Sub AddaTextBox()
Dim mybox
Dim top, left, height, width, margin
margin = 20
With ThisWorkbook.ActiveSheet.Shapes
left = .Item(.Count).left
top = .Item(.Count).top + .Item(.Count - 1).height + margin
width = .Item(.Count).width
height = .Item(.Count).height
Set mybox = .addtextbox(msoTextOrientationHorizontal, left, top, width, height)
End With
End Sub
Bookmarks