Hi - Am novice in VB.
this is part of a macro I recorded to copy a range of cells.
I was working in the temp worksheet, and the sheets temp select statement
was based on my clicking.
I'd like to generalize this section to copy the 'blank pg' cells from any
worksheet.
User would highlight cells on his current worksheet and execute the macro to
copy back to his sheet. How do I find out the name of the sheet from whence
I came?
Code would be appreciated.

The Go To dialog box did not give me this last location.
How does something get into the Go To dialog box?

Sheets("blank pg").Select
ActiveCell.Range("A1:H20").Select
Selection.Copy
Sheets("temp").Select
Selection.Insert Shift:=xlDown
ActiveSheet.Paste
Application.CutCopyMode = False


Thanks much.
Neal Z