Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Is there a way that I can highlight all the cells in a worksheet that contain
values that are used by formulas in other worksheets/workbooks? -- Michelle |
#2
![]() |
|||
|
|||
![]()
Perhaps this, although it will show all dependents on-sheet as well and not
just those off-sheet Sub ShowDeps() Dim myrng As Range Dim myrng1 As Range Dim myrng2 As Range With ActiveSheet Set myrng1 = Intersect(.UsedRange, _ .UsedRange.SpecialCells(xlCellTypeFormulas, 23)) Set myrng2 = Intersect(.UsedRange, _ .UsedRange.SpecialCells(xlCellTypeConstants, 23)) End With Set myrng = Union(myrng1, myrng2) For Each cel In myrng cel.ShowDependents Next cel 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 :-) ---------------------------------------------------------------------------- "Michelle" wrote in message ... Is there a way that I can highlight all the cells in a worksheet that contain values that are used by formulas in other worksheets/workbooks? -- Michelle |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
quattro converter for Excel 2003 | Excel Discussion (Misc queries) | |||
Opening DBF files with Excel 2003 via Windows Explorer ? | Setting up and Configuration of Excel | |||
sharing/using/saving Excel 2002 files in Excel 2003 | Excel Discussion (Misc queries) | |||
Excel 2003 back to Excel 2002 | Excel Discussion (Misc queries) | |||
Excel 2000 file when opened in Excel 2003 generates errors? | Excel Discussion (Misc queries) |