Peter,
Thanks for the solutions. Both work well and I am using the latter version.
Problem solved, but…
I’m really curious to see if I might learn some VBA coding by asking you to critique (and perhaps tweak) my own effort.
Sub MyTryMacro1()
Range("A20").Select
ActiveWorkbook.Names.Add Name:="Spot1", RefersToR1C1:="=Analysis!R20C1"
ActiveWorkbook.Names("Spot1").Comment = ""
Selection.Copy
Range("C3").Select
ActiveSheet.Paste
Application.Goto Reference:="Spot1"
ActiveWorkbook.Names("Spot1").Delete
Application.CutCopyMode = False
Range("A21").Select
End Sub
As you can see, I took a different approach. I want to be able to place the cursor on any cell in the list of names, then by running the macro, do the copying and go to the next lower cell. Clearly, it doesn’t work because of the various absolute cell references. Is there a way to make this approach work such that the cell references would be determined by whatever the current cell is when the macro is invoked? Furthermore, it seems rather clumsy to jump from cell to cell to put the information into Cell C3. I’d guess you can suggest a more elegant way to accomplish this.
Again, much thanks for your attention and assist.