D
daniel chen
Option Explicit
Sub value_picking()
' I use this script to pick value anywhere within the sheet, _
and paste it in cell A1.
Dim reg1 As Variant
reg1 = ActiveCell.Value
Range("A1") = reg1
End Sub
'Similarly, I want to select a range of varrious size, _
and paste its value in Range("A1:??"), _
so long they are not overlapped.
'Please help.
Sub value_picking()
' I use this script to pick value anywhere within the sheet, _
and paste it in cell A1.
Dim reg1 As Variant
reg1 = ActiveCell.Value
Range("A1") = reg1
End Sub
'Similarly, I want to select a range of varrious size, _
and paste its value in Range("A1:??"), _
so long they are not overlapped.
'Please help.