how long would the script last with 65K ??
we have found a solution this way (30 is the col number in this example) :
colHere = Split(ActiveSheet.Cells(1, 30).Address, "$")(1)
ThisWorkbook.Names.Add Name:="rngTest", _
RefersTo:="=OFFSET(theSheet!$" & colHere & "$2,0,0,COUNTAtheSheet!$" & colHere & ":$" & colHere & ")-1,1)"
in the named ranges collection this is translated to "AD" which is indeed column 30.
Don't know if it wins beauty contests though ;-)
Does this seem ok to you ?? Is there a better way to do it ??
Bookmarks