P
Paula
I will be choosing the end of data point (over and over) and then offsetting
the active cell by some value. I don't know how to reference that new active
cell so that I can tell another function that that is its destination.
'goes to last cell in data set (Ex: A10)
ActiveCell.SpecialCells(xlLastCell).Select
'active cell 1 down and 9 left (Ex: B1)
ActiveCell.Offset(1, -9).Range("A1").Select
'How do I indicate that Destination is B1, when B1 Changes each time?
Instead of
'"$A$85" I want to give it a relative variable.
Destination:=Range("$A$85"))
NOTE: I thought I could put in something like
Destination:=Range("ActiveCell.SpecialCells(xlLastCell).Select_
ActiveCell.Offset(1, -9).Range("A1").Select" ))
the active cell by some value. I don't know how to reference that new active
cell so that I can tell another function that that is its destination.
'goes to last cell in data set (Ex: A10)
ActiveCell.SpecialCells(xlLastCell).Select
'active cell 1 down and 9 left (Ex: B1)
ActiveCell.Offset(1, -9).Range("A1").Select
'How do I indicate that Destination is B1, when B1 Changes each time?
Instead of
'"$A$85" I want to give it a relative variable.
Destination:=Range("$A$85"))
NOTE: I thought I could put in something like
Destination:=Range("ActiveCell.SpecialCells(xlLastCell).Select_
ActiveCell.Offset(1, -9).Range("A1").Select" ))