Skip to content

Instantly share code, notes, and snippets.

@Kyeongrok
Last active July 16, 2017 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kyeongrok/49cbae31aa2d108985edd00a432073bd to your computer and use it in GitHub Desktop.
Save Kyeongrok/49cbae31aa2d108985edd00a432073bd to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment