Option Explicit
Sub Print_Click()
Dim Row As Long, Col As Long
Dim i As Integer
Sheets(1).Select 'Sheet 1 ¼±ÅÃ
Row = ActiveCell.Row
Col = ActiveCell.Column
Sheets(2).Activate 'Sheet 2 È°¼ºÈ
For i = 1 To 12
Sheets(2).Cells(i + 1, 2) = Sheets(1).Cells(Row, i)
Next i
End Sub
Sub Edit_Click()
Sheets(1).Activate
End Sub
|