C
Chris Gorham
Trying to get this piece of code to compile. All I want to
do is to cycle through the range names in a workbook and
assign details to some variables. It bugs out though...
Dim nm as object
For Each nm In ActiveWorkbook.Names
rng_name = nm.Name // this works ok
rng_sheet = nm.Worksheet.Name // this bugs out
rng_add = nm.Address // this also bugs out
Next nm
Any help much appreciated
Chris
do is to cycle through the range names in a workbook and
assign details to some variables. It bugs out though...
Dim nm as object
For Each nm In ActiveWorkbook.Names
rng_name = nm.Name // this works ok
rng_sheet = nm.Worksheet.Name // this bugs out
rng_add = nm.Address // this also bugs out
Next nm
Any help much appreciated
Chris