Finding when there are no directdependents

S

sm34gm

Hi all,

I have made a macro to perform an operation on all cells that
dependents of a specified cell. I want to exit the macro when the
specified cell has no dependents. Whatever I try causes an error.
Please could you give me some ideas how to achieve this effect? Here's
an example of what I tried:

If masterCell.DirectDependents.Count = 0 Then
Exit Sub
End If

but even the count property is invalid when the cell has no
directdependents.


Thanks, smu
 
G

Guest

Giive this a whirl...

Sub test()
Dim MasterCell As Range
Dim rng As Range

Set MasterCell = Range("A1")
On Error Resume Next
Set rng = MasterCell.DirectDependents
On Error GoTo 0
If rng Is Nothing Then
MsgBox "No Dependants"
Else
MsgBox rng.Address
End If

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top