Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
ActiveSheet.Names.Add Name:=Range("A1").Value, RefersTo:= _
"=OFFSET($A$1,0,0,COUNTA($A:$A),1)"
End If
End Sub
Hello all
I set up a dynamic name range using.
=OFFSET($A$1,0,0,COUNTA($A:$A),1)
The real kicker is that the Name itself I would like to be Dynamic, I would like to use the value in cell A1.
Anyone have an ideas?
Ross
Column A has both number and text.
a VBA method would work but prefer not to.