K
Kevin
If I have several named cells in say 10 worksheets, and I delete sheet 8,
then I have some named ranged left out there with no valid reference.
How can I check the validity of a named cell in vba? I have this so far...
Sub test()
Dim Nam As Name
For Each Nam In ActiveWorkbook.Names
"Place code here to check if reference on name is good, if it isnt then
delete that name."
Next Nam
End Sub
Thanks in advance
then I have some named ranged left out there with no valid reference.
How can I check the validity of a named cell in vba? I have this so far...
Sub test()
Dim Nam As Name
For Each Nam In ActiveWorkbook.Names
"Place code here to check if reference on name is good, if it isnt then
delete that name."
Next Nam
End Sub
Thanks in advance