순차 문서 일련 번호 (Microsoft Word) 사용
문서에 일련 번호를 만들어야하고 그 성격이 매우 간단한 경우 매크로를 사용하여 만들 수 있습니다. 일련 번호에 대한 이러한 접근 방식은 일련 번호가 순차적 (1, 2, 3 등)이거나 빈도가 규칙적인 경우 (3, 5, 7 등) 유용합니다.
시작하려면 일련 번호 변경 및 문서 인쇄를 제어하는 매크로를 입력해야합니다. 다음 매크로를 사용할 수 있습니다.
Sub MySerial() Dim rngSerialLocation As Range Dim intSerialNum As Integer Dim strSerialNum As String Dim docCurrent As Document Dim intNumCopies As Integer Dim intCount As Integer ' set ref to current active doc Set docCurrent = Application.ActiveDocument ' set ref to the bookmarked serial number Set rngSerialLocation = docCurrent.Bookmarks("Serial").Range ' get the starting number intSerialNum = Val(rngSerialLocation.Text) ' get the number of copies required intNumCopies = Val(InputBox$("How many Copies?", _ "Print Serialized", "1")) For intCount = 1 To intNumCopies ' print the document docCurrent.PrintOut Range:=wdPrintAllDocument ' increment the serial number intSerialNum = intSerialNum + 1 ' put into formatted version strSerialNum = Format(intSerialNum, "00000") ' stuff into proper place rngSerialLocation.Text = strSerialNum Next intCount ' reset the bookmark, since the updating procedure ' wipes out the old one docCurrent.Bookmarks.Add Name:="Serial", _ Range:=rngSerialLocation End Sub
매크로를 사용하기위한 전제 조건은 하나뿐입니다. 문서에 Serial이라는 책갈피가 포함되어 있는지 확인해야합니다. 이 책갈피는 첫 번째 인쇄 된 문서에 표시되기를 원하는대로 문서의 일련 번호를 참조해야합니다. (매크로 실행을 마치면 문서를 저장할 수 있으며 일련 번호는 다음에 사용할 때 사용할 수 있도록 준비됩니다.)
또한 매크로는 일련 번호가 주로 각 반복마다 변경되는 일부 숫자 값으로 구성되어 있다고 가정합니다. 매크로 내의 For … Next 루프에서 일련 번호의 증가와 형식을 수정할 수 있습니다.
_ 참고 : _
이 페이지 (또는 WordTips 사이트의 다른 페이지)에 설명 된 매크로를 사용하는 방법을 알고 싶다면 유용한 정보가 포함 된 특별 페이지를 준비했습니다.
link : / wordribbon-WordTipsMacros [새 브라우저 탭에서 특별 페이지를 열려면 여기를 클릭하세요]
.
_WordTips_는 비용 효율적인 Microsoft Word 교육을위한 소스입니다.
(Microsoft Word는 세계에서 가장 널리 사용되는 워드 프로세싱 소프트웨어입니다.)이 팁 (9540)은 Office 365의 Microsoft Word 2007, 2010, 2013, 2016, 2019 및 Word에 적용됩니다.이 팁의 버전은 다음과 같습니다. Word의 이전 메뉴 인터페이스 :
link : / word-Using_Sequential_Document_Serial_Numbers [순차 문서 일련 번호 사용]
.