+ Reply to Thread
Results 1 to 8 of 8

Sort Rows With Linked Textboxes

Hybrid View

  1. #1
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    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.

  2. #2
    Registered User
    Join Date
    01-09-2008
    Posts
    4

    Cool Solved

    Quote Originally Posted by shg
    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:

    ' 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

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Well done, thanks for posting back.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    This line
    If Not Intersect(Range(col & ":" & col), TB.TopLeftCell) Is Nothing Then
    simplifies to
    If TB.TopLeftCell.Column = col Then

  5. #5
    Registered User
    Join Date
    01-09-2008
    Posts
    4

    Smile

    Quote Originally Posted by shg
    This line
    If Not Intersect(Range(col & ":" & col), TB.TopLeftCell) Is Nothing Then
    simplifies to
    If TB.TopLeftCell.Column = col Then
    Good point. Thanks.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1