Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have an excel workbook with about 25 worksheets. Before I delete a named
cell, I would like to find where it is currently used. ANy suggestions? Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
First select a cell in an unused area in a worksheet and run:
Sub namer() Set r = ActiveCell For Each w In ActiveWorkbook.Names r.Value = w.Name r.Offset(0, 1).Value = w.RefersToRange.Address Set r = r.Offset(1, 0) Next End Sub This will produce a list of the names and associated ranges Then, for each name, pull-down: Edit Find {the name} Find All This will produce a list of where each name is used. -- Gary''s Student - gsnu200774 "doug2500" wrote: I have an excel workbook with about 25 worksheets. Before I delete a named cell, I would like to find where it is currently used. ANy suggestions? Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
what do you mean by "currently used"? Regards FSt1 "doug2500" wrote: I have an excel workbook with about 25 worksheets. Before I delete a named cell, I would like to find where it is currently used. ANy suggestions? Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Got it. Thanks all.
"doug2500" wrote: I have an excel workbook with about 25 worksheets. Before I delete a named cell, I would like to find where it is currently used. ANy suggestions? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
computed named cell references | New Users to Excel | |||
Named Cell References in VBA | Excel Discussion (Misc queries) | |||
Named References | Excel Discussion (Misc queries) | |||
Named ranges: don't want absolute references | Excel Discussion (Misc queries) | |||
Named ranges: don't want absolute references | Excel Discussion (Misc queries) |