That's a well-considered reason. Alas, I have no suggestion, but if you find a workable one elsewhere, drop back and let us know.
That's a well-considered reason. Alas, I have no suggestion, but if you find a workable one elsewhere, drop back and let us know.
Here is my solution based on feedback I found:Originally Posted by shg
![]()
' col is the column the boxes are in, colOffset is the offset from where the text is Sub UpdateSortedBoxes(col As String, colOffset As Integer) Dim TB As OLEObject For Each TB In Application.ActiveSheet.OLEObjects If TB.Name Like "TextBox*" Then If Not Intersect(Range(col & ":" & col), TB.TopLeftCell) Is Nothing Then TB.LinkedCell = TB.TopLeftCell.Offset(0, colOffset).Address End If End If Next End Sub
Well done, thanks for posting back.
This line
simplifies to![]()
If Not Intersect(Range(col & ":" & col), TB.TopLeftCell) Is Nothing Then
![]()
If TB.TopLeftCell.Column = col Then
Good point. Thanks.Originally Posted by shg
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks