Sub main_loop()
'F8 한줄씩 실행
Cells.Clear
'Call 연습_반복문
Call 연습_반복문_가로로이동
End Sub
Sub 연습_반복문()
For 행 = 1 To 100
Range("b" & 행).Value = "안녕하세요" & 행
Next
End Sub
Sub 연습_반복문_가로로이동()
For 열 = 1 To 12
'cells(행, 열)
Cells(1, 열).Value = 열 & "월"
Next
End Sub
Last active
July 16, 2017 05:40
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment