How to 'Trace dependents' for all cells in a selection at once?

  • Thread starter Thread starter Dmitriy Kopnichev
  • Start date Start date
Hi
I saw this post at least 4 times (2 times in this newgroup
and 2 times in a different nG - think it was Excel.misc).
Not sure if you crossposted

My answer was that AFAIK this is NOT possible.
 
Sub ShowDependents()
'
For Each cell In Selection
cell.ShowDependents
Next cell
End Sub


Sub ShowPrecedents()
'
For Each cell In Selection
cell.ShowPrecedents
Next cell
End Sub
 
Thanks!
Ken Wright said:
Sub ShowDependents()
'
For Each cell In Selection
cell.ShowDependents
Next cell
End Sub


Sub ShowPrecedents()
'
For Each cell In Selection
cell.ShowPrecedents
Next cell
End Sub


--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

-------------------------------------------------------------------------- --
It's easier to beg forgiveness than ask permission :-)
-------------------------------------------------------------------------- --
 
Back
Top