Intermittent "The object invoked has disconnected from its clients" Fully qualified range problem?

abssorb

New Member
Joined
Apr 15, 2008
Messages
34
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
Platform
  1. Windows
I'm a casual VBA user. Bit of Newbie.

I have a macro which just timestamps a row with a user's name and the date. It's in a workbook with about 10 worksheets. Each of which has a different number of columns, so I have to search for the right columns.
It needs to work on any worksheet.

This works perfectly most of the time, but every now and again it will throw an error.

Error -2147417848 Automation error
The object invoked has disconnected from its clients


Sometimes Excel becomes unresponsive too.

I can't see where the code is calling an object, but I have seen internet wisdom saying that this can be caused by a lack of fully qualified range definition.
But I can't find any way to fully qualify the activesheet when I need it to be sheet agnostic.

Forgive the scruffy inefficient code, cobbled together from some other great examples on here:


VBA Code:
Sub Tag_my_update_on_the_row()
'
' Look for the data governance columns and add my details.
'
' Based on https://www.mrexcel.com/board/threads/macro-to-find-column-number-of-a-certain-value.172151/
' https://www.mrexcel.com/board/threads/how-to-search-for-a-string-and-return-its-column-letter.861462/
'
'
'

Dim SeekIt As Variant

Dim MyRange As String
Dim MyRange2 As String
Dim CheckAction As Integer

    SeekIt = "#Data_Governance"                                'set to whatever you want to look for
    myrow = ActiveCell.Row

    With ActiveSheet.Range("A1:Z20")           '<<< set the range you want to look through. We're just looking at header area
         Set c = .Find(SeekIt, , xlValues, xlPart, , , False)
    End With
    
   If Not c Is Nothing Then
    
        If myrow < 4 Then
            MsgBox ("Can't perform this on header rows. Please select the row you amended.")
            Exit Sub
        End If

    
    ' Get results into a cell reference
        ColLetter = Split(c.Address, "$")(1)
    
        MyRange = ColLetter & myrow
    
    
            ' MsgBox ("Your data " & SeekIt & " was found in column " & ColLetter & "(" & c.Address & ") and your row is " & myrow & "Cell is " & MyRange)
        CheckAction = MsgBox("Data Governance column:" & Chr(13) & Chr(10) & "Tag row " & myrow & " with " & Environ("Username") & "?", vbQuestion + vbYesNo + vbDefaultButton2, "Message Box Title")

        If CheckAction = vbYes Then
            ' do it
            Range(MyRange).Value = Environ("Username")
            Range(MyRange).Select
            ActiveCell.Offset(0, 1).Value = Format(Date, "dd-mm-yyyy") 'Cell to right of active cell

        Else
        ' Don't do it - user choice was no
            Exit Sub
        End If

Else
' The search didn't work.
  MsgBox "There are no Data Governance columns on this worksheet."
End If



End Sub
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
I can't see any issue with that code. Which line actually causes the problem?

There is no need to select the cell in there, and you don't really need to figure out the column letter, but I don't see either of those things as problematic per se.
 
Upvote 0
Thanks, that's reassuring. Because it's intermittent it's unclear which line is causing the problem. I can keep checking.
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,179
Members
448,948
Latest member
spamiki

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top