엑셀 - 각 시트별로 파일 만들기 매크로
1. 시트를 분리할 엑셀파일 실행 2. Alt + F11 이런 VBA(Visual Basic for Applications) 창이 실행 됨 2.1. 파일을 분리할 엑셀 파일 선택 후 우측 마우스 클릭 2.2. 삽입 > 모듈 3. Module에 다음 코드 삽입 Sub Separate_Tab() Dim Directory_Path As String Directory_Path = Application.ActiveWorkbook.Path If Directory_Path = vbNullString Or Right$(Directory_Path & "\" & "exports", 1) "\" Then Else MkDir (Directory_Path & "\" & "exports") End If Directory_Path..