Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Accessing Dependent and Precedent Information.
Written by Allen Wyatt (last updated March 28, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
David rightly notes that Excel provides auditing tools (Trace Dependents and Trace Precedents) that are a very helpful way of keeping track of what is happening in large worksheets. However, the actual interface just lists out the cells in a small area, and David cannot easily copy out this list of cells to analyze and manipulate it. When he uses Trace Dependents on an important cell in a large worksheet, the small dialog box can contain several hundred references. David wonders if there is a relatively easy way of getting this information into a more usable format, like a blank worksheet or another workbook.
There is obviously no way to do this with native Excel commands, but you can create a macro that will extract the information you desire. The following macro will list the dependent cells for whatever cell is selected when you run the macro:
Sub ListDependents()
Dim rArea As Range
Dim rCell As Range
Dim rDep As Range
Dim lRow As Long
Dim sCellAddr As String
sCellAddr = ActiveCell.Address(False, False)
On Error Resume Next
Set rDep = ActiveCell.Dependents
If rDep Is Nothing Then
MsgBox sCellAddr & " has no dependents"
Exit Sub
End If
On Error GoTo 0
Worksheets.Add
lRow = 1
Cells(lRow, 1).Value = "Dependents for " & sCellAddr
For Each rArea In rDep
For Each rCell In rArea
lRow = lRow + 1
Cells(lRow, 1) = rCell.Address(False, False)
Next
Next
Set rArea = Nothing
Set rCell = Nothing
Set rDep = Nothing
End Sub
When the macro is first run, it checks to see if there are any dependents for the cell. If there aren't, then you are notified, and the macro is exited. If there are dependents, then a new worksheet is added to the workbook and the dependents of the cell are added to the worksheet.
If you want the macro to instead list precedents, all you need to do is change the all instances of "Dependents" in the macro to "Precedents."
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8271) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Accessing Dependent and Precedent Information.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
The Convert Text to Columns capabilities of Excel are very helpful when pulling apart information. When working with ...
Discover MoreYou've turned on Highlight Changes, but how do you know what has been changed? This tip explains how Excel displays those ...
Discover MoreDo you have a worksheet from which you need to print only portions of the data available? There are two ways you can ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-03-30 15:55:38
J. Woolley
The Tip's macro only traces dependents located on the same worksheet as the selected cell; it does not list dependents located on other worksheets of the workbook. Likewise if you change the macro to list precedents as suggested in the last paragraph.
My Excel Toolbox's ReportDents macro traces direct precedents for all formulas in all worksheets of the active workbook. Notice every precedent has a dependent and vice versa. See my comment dated 2025-07-15 here: https://excelribbon.tips.net/T008266
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments