Copy to destination of "A50" + value in I12 (sequence#) A51,A52

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I amy trying to copy the current value of a row from one worksheet (Data
validated list) to another worksheet. The first time the destination is
"A50", the second time has to be "A51" so as not to overwrite previous copy.
In cell I12 is the selected sequence number to assist (1,2,3,4,5...)but I
cant figure out how to use the value in I12 to advance the destination from
A50 plus that value.
 
GeekRN,

Try this as your copy destination:

Range("A" & 50 + Range("I12").Value)
 
Dim myDest As Range
Set myDest = Worksheets("Sheet2 Name").Range("A50").Offset(Worksheets("Sheet2
Name").Range("I12").Value,0)
Worksheets("Sheet2 Name").Range("whatever").Copy myDest

HTH,
Bernie
MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top