A
Anthony Viscomi
I am not a XLS user; this project calls for the population of a XLS with
values that reside within Access, of which I am a power user. Anyway, where
do I put this code?
Sub ClearNamedRangeData()
I have over 25 Worksheets within this template. Is there a global that I can
place this in?
Thanks,
Anthony
values that reside within Access, of which I am a power user. Anyway, where
do I put this code?
Sub ClearNamedRangeData()
Dim nName As Name
For Each nName In ThisWorkbook.Names
Range(nName).Clear
Next
End Sub
I have over 25 Worksheets within this template. Is there a global that I can
place this in?
Thanks,
Anthony