I
IanC
How can I determine (using VBA) how many rows and columns are in a named
range?
Many thanks.
range?
Many thanks.
Rick Rothstein said:Good point! These should work for both contiguous and non-contiguous
ranges...
Dim A As Range
.....
For Each A In Range("NamedRange").Areas
TotalRows = TotalRows + A.Rows.Count
Next
For Each A In Range("NamedRange").Areas
TotalColumns = TotalColumns + A.Columns.Count
Next
Note, however, these return the total of the number of rows and/or columns
in each area for non-contiguous ranges, whether the row ranges and/or
column ranges overlap or not.