워드 파일이 길 경우에 나누어서 저장하고 싶은 경우가 있다. 이때를 위해 간단한 VBA code를 작성하였다. 물론 페이지를 3페이지가 아니게 하고 싶으면 조금만 수정하면 된다. Sub SplitPagesIntoNewDocs() 'Declare variables Dim doc As Document Dim page As Range Dim pageNumber As Integer Dim pageCount As Integer Dim docName As String 'Set the document and page count Set doc = ActiveDocument pageCount = doc.ComputeStatistics(wdStatisticPages) 'Loop through each group of th..