¿¢¼¿ - ½ÃÆ®1 ¼±ÅöóÀÎ ½ÃÆ®2 ¿Å±â±â ¿¹Á¦
Á¶È¸ : 104 À̸§ : ºÒ¹Ù´Ù
E-mail :
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
ÀÛ¼º ³¯Â¥ : 2018-09-13