메인 컨텐츠로 가기

Excel에서 통합 문서를 분리하여 Excel 파일을 분리하는 방법은 무엇입니까?

통합 문서의 각 워크 시트를 개별 Excel 파일로 저장하여 큰 통합 문서를 별도의 Excel 파일로 분할해야 할 수 있습니다. 예를 들어 통합 문서를 여러 개의 개별 Excel 파일로 분할 한 다음 각 파일을 다른 사람에게 전달하여 처리 할 수 ​​있습니다. 이렇게하면 특정 사람이 특정 데이터를 처리하고 데이터를 안전하게 유지할 수 있습니다. 이 기사에서는 큰 통합 문서를 각 워크 시트에 따라 별도의 Excel 파일로 분할하는 방법을 소개합니다.

  1. 복사 및 붙여 넣기를 사용하여 통합 문서를 분리하여 Excel 파일 분리
  2. 이동 또는 복사 기능을 사용하여 통합 문서를 별도의 Excel 파일로 분할
  3. VBA 코드로 통합 문서를 분리하여 Excel 파일 분리
  4. Excel 용 Kutools를 사용하여 통합 문서를 Excel / PDF / CSV / TXT 파일로 쉽게 분할하십시오.

복사 및 붙여 넣기를 사용하여 통합 문서를 분리하여 Excel 파일 분리

평소에는 명령 파스타 명령은 통합 문서를 별도의 Excel 파일로 수동으로 저장할 수 있습니다. 먼저 별도의 파일로 저장할 전체 워크 시트를 선택하고 새 통합 문서를 만든 다음 새 통합 문서에 붙여넣고 마지막에 저장합니다.

몇 개의 워크 시트 만 별도의 파일로 분할해야하는 경우 사용하기 쉬운 방법입니다. 그러나 수동으로 복사 및 붙여 넣기를 사용하여 많은 워크 시트를 분할하는 것은 시간이 많이 걸리고 지루해야합니다.


이동 또는 복사 기능을 사용하여 통합 문서를 별도의 Excel 파일로 분할

이 방법은 선택한 시트를 새 통합 문서로 이동 또는 복사하고 별도의 통합 문서로 저장하는 이동 또는 복사 기능을 도입합니다. 다음과 같이하십시오 :

1. 시트 탭 모음에서 시트를 선택하고 마우스 오른쪽 버튼을 클릭 한 다음 이동 또는 복사 상황에 맞는 메뉴에서. 스크린 샷보기 :

주의 사항: 홀딩 Ctrl 키 키를 사용하면 시트 탭 표시 줄에서 하나씩 클릭하여 인접하지 않은 여러 시트를 선택할 수 있습니다. 보유 변화 키를 사용하면 시트 탭 막대에서 첫 번째 시트와 마지막 시트를 클릭하여 인접한 여러 시트를 선택할 수 있습니다.

2. 이동 또는 복사 대화 상자에서 (새 책) 인사말 예약하려면 드롭 다운 목록에서 사본 만들기 옵션을 클릭하고 OK 단추. 스크린 샷보기 :

3. 이제 선택한 모든 시트가 새 통합 문서로 복사됩니다. 딸깍 하는 소리 입양 부모로서의 귀하의 적합성을 결정하기 위해 미국 이민국에 > 찜하기 새 통합 문서를 저장합니다.

통합 문서를 Excel에서 Excel / PDF / TXT / CSV 파일로 빠르게 분할

일반적으로 통합 문서를 개별 Excel 파일로 분할 할 수 있습니다. 이동 또는 복사 Excel의 기능. 그러나 Excel 용 Kutools 통합 문서 분할 유틸리티를 사용하면 통합 문서를 쉽게 분할하고 각 워크 시트를 별도의 PDF / TEXT / CSV 파일 또는 Excel의 통합 문서로 저장할 수 있습니다.


광고 분할 통합 문서 엑셀

Excel 용 Kutools - 300개 이상의 필수 도구로 Excel을 강화하세요. 신용카드 없이 모든 기능을 갖춘 30일 무료 평가판을 즐겨보세요! 이제 그것을 잡아

VBA 코드로 통합 문서를 분리하여 Excel 파일 분리

다음 VBA 코드를 사용하면 현재 통합 문서의 여러 워크 시트를 Excel 파일로 빠르게 분할 할 수 있습니다. 다음과 같이하십시오.

1. 분할 할 통합 문서에 대해 새 폴더를 만듭니다. 분할 된 Excel 파일은이 마스터 통합 문서와 동일한 폴더에 유지되기 때문입니다.

2. 누르고 ALT + F11 Excel에서 키를 클릭하고 응용 프로그램 용 Microsoft Visual Basic 창.

3. 딸깍 하는 소리 끼워 넣다 > 모듈을 클릭하고 모듈 창에 다음 코드를 붙여 넣습니다.

VBA : 통합 문서를 여러 통합 문서로 분할하고 동일한 폴더에 저장

Sub Splitbook()
'Updateby20140612
Dim xPath As String
xPath = Application.ActiveWorkbook.Path
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each xWs In ThisWorkbook.Sheets
    xWs.Copy
    Application.ActiveWorkbook.SaveAs Filename:=xPath & "\" & xWs.Name & ".xlsx"
    Application.ActiveWorkbook.Close False
Next
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub

4. 눌러 F5 이 코드를 실행하는 키입니다. 그리고 통합 문서는 원본 통합 문서와 동일한 폴더에 별도의 Excel 파일로 분할됩니다. 스크린 샷보기 :

주의 사항: 시트 중 하나가 통합 문서와 이름이 같은 경우이 VBA가 작동하지 않습니다.

Excel 용 Kutools를 사용하여 통합 문서를 Excel / PDF / CSV / TXT 파일로 쉽게 분할하십시오.

당신이 있으면 Excel 용 Kutools 설치, 그것의 통합 문서 분할 도구는 몇 번의 클릭만으로 여러 워크 시트를 개별 Excel 파일로 편리하고 빠르게 분할 할 수 있습니다.

Excel 용 Kutools - 300개 이상의 필수 도구로 Excel을 강화하세요. 신용카드 없이 모든 기능을 갖춘 30일 무료 평가판을 즐겨보세요! 이제 그것을 잡아

1. 설치 후 Excel 용 Kutools클릭 쿠툴즈 플러스 > 통합 문서 분할 , 스크린 샷 참조 :

2. 에서 통합 문서 분할 대화 상자에서 다음 작업을 수행하십시오.
(1) 기본적으로 모든 워크 시트 이름이 선택됩니다. 일부 워크 시트를 분할하지 않으려면 선택을 취소 할 수 있습니다.
(2) 확인 유형 저장 선택권;
(3) 형식으로 저장 드롭 다운에서 분할하고 저장할 파일 유형을 하나 선택합니다.
(4) 그런 다음 스플릿 버튼을 클릭합니다.

주의 사항: 숨겨진 워크 시트 나 빈 워크 시트를 분할하지 않으려면 숨겨진 워크 시트 건너 뛰기 or 빈 워크 시트 건너 뛰기 상자.

3. 폴더 찾아보기 대화 상자에서 분할 된 개별 파일을 저장할 대상 폴더를 지정하고 OK 버튼을 클릭합니다.

이제 확인 된 워크 시트가 별도의 새 통합 문서로 저장됩니다. 각각의 새 통합 문서는 원래 워크 시트 이름으로 이름이 지정됩니다. 스크린 샷보기 :

Excel 용 Kutools's 통합 문서 분할 도구를 사용하면 활성 통합 문서를 필요에 따라 개별 Excel 파일 (하나의 파일에 하나의 워크 시트 포함), CSV 파일, TXT 파일 또는 PDF 파일로 쉽게 분할 할 수 있습니다. 비어 있거나 숨겨진 워크 시트를 모두 건너 뛰도록 설정할 수 있습니다. 무료 평가판을 받으십시오!


데모 : 한 통합 문서의 각 워크 시트를 별도의 Excel / txt / csv / pdf 파일로 분할 또는 저장


Excel 용 Kutools: 300개 이상의 편리한 도구를 손쉽게 사용할 수 있습니다! 지금 바로 기능 제한 없이 30일 무료 평가판을 시작해 보세요. 지금 다운로드!

관련 기사 :

최고의 사무 생산성 도구

🤖 Kutools AI 보좌관: 다음을 기반으로 데이터 분석을 혁신합니다. 지능형 실행   |  코드 생성  |  사용자 정의 수식 만들기  |  데이터 분석 및 차트 생성  |  Kutools 기능 호출...
인기 기능: 중복 항목 찾기, 강조 표시 또는 식별   |  빈 행 삭제   |  데이터 손실 없이 열이나 셀 결합   |   수식없이 반올림 ...
슈퍼 조회: 다중 기준 VLookup    다중 값 VLookup  |   여러 시트에 걸친 VLookup   |   퍼지 조회 ....
고급 드롭다운 목록: 드롭다운 목록을 빠르게 생성   |  종속 드롭다운 목록   |  다중 선택 드롭 다운 목록 ....
열 관리자: 특정 개수의 열 추가  |  열 이동  |  Toggle 숨겨진 열의 가시성 상태  |  범위 및 열 비교 ...
특색 지어진 특징: 그리드 포커스   |  디자인보기   |   큰 수식 바    통합 문서 및 시트 관리자   |  리소스 라이브러리 (자동 텍스트)   |  날짜 선택기   |  워크 시트 결합   |  셀 암호화/해독    목록으로 이메일 보내기   |  슈퍼 필터   |   특수 필터 (굵게/기울임꼴/취소선 필터링...) ...
상위 15개 도구 세트12 본문 도구 (텍스트 추가, 문자 제거,...)   |   50+ 거래차트 유형 (Gantt 차트,...)   |   40+ 실용 방식 (생일을 기준으로 나이 계산,...)   |   19 삽입 도구 (QR 코드 삽입, 경로에서 그림 삽입,...)   |   12 매출 상승 도구 (숫자를 단어로, 환율,...)   |   7 병합 및 분할 도구 (고급 결합 행, 셀 분할,...)   |   ... 그리고 더

Excel용 Kutools로 Excel 기술을 강화하고 이전과는 전혀 다른 효율성을 경험해 보세요. Excel용 Kutools는 생산성을 높이고 시간을 절약하기 위해 300개 이상의 고급 기능을 제공합니다.  가장 필요한 기능을 얻으려면 여기를 클릭하십시오...

상품 설명


Office Tab은 Office에 탭 인터페이스를 제공하여 작업을 훨씬 쉽게 만듭니다.

  • Word, Excel, PowerPoint에서 탭 편집 및 읽기 사용, Publisher, Access, Visio 및 Project.
  • 새 창이 아닌 동일한 창의 새 탭에서 여러 문서를 열고 만듭니다.
  • 생산성을 50% 높이고 매일 수백 번의 마우스 클릭을 줄입니다!
Comments (113)
Rated 2.5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Hello.
Both options work fine. But ..not satisfying my needs.
In each sheet i have 2 extra columns at and which contain vlookup formulas. And they all get exported to new files..
I cant have that.I also cant go and delete all formulas from all sheets then export , too much work.
Any solution to export but to ignore those columns with formulas?
Rated 2.5 out of 5
This comment was minimized by the moderator on the site
I tried this in Office 365 and it copies 8 sheets to separate files then gives me "run-time error '1004': Copy Method of Worksheet Class failed"
This comment was minimized by the moderator on the site
Hi there, did you use the vba code or Kutools?
This comment was minimized by the moderator on the site
I was able to use this macro once and it was great but now it will not work and I only get one file labeled as "Sheet 1" and it is blank, can anyone help?
This comment was minimized by the moderator on the site
Hello, how can we split the sheets tow by tow ==< what i mean is that i have an amount of sheets in one folder and I want tow split each tow successive sheets in one folder, i have tried to put changes on the basic code but i didn't succeed, I'm a beginner in this field if you can be held that is going to be a huge help
This comment was minimized by the moderator on the site
xWs.Copy
showing error in this area
This comment was minimized by the moderator on the site
Hello, I just tried the split data function based on the first column (about 90 partners). Half of the worksheets are named correctly while the other just have number of the sheet eventhough there is name of the partner in the column. Any help, please?
This comment was minimized by the moderator on the site
i have a data of 5 worksheets. Every worksheet has a common column (Branch). Can i convert the data into different excel files based on respective branches
This comment was minimized by the moderator on the site
Hi Sudarshan,
Kutools for Excel has an amazing feature – Split Data, which can quickly split data from a range or a sheet to multiple sheets based on values in the specified column. And these sheets are saved in a new workbook.

You can apply the Split Data feature to split each sheet based on the specified common column.
After splitting, you can apply the Combine Worksheets feature, also provided by Kutools for Excel, and combine all same name worksheets into one workbook.
This comment was minimized by the moderator on the site
excel which i want to split is having 3 spread sheet my requirement is to split the excel as per the sheet 1 and remaning to sheet to be contant when file split
This comment was minimized by the moderator on the site
Hi prateeksha,
In the fourth method on this webpage, the Split Workbook feature of Kutools for Excel is recommended, which will split every specified worksheet to individual PDF/CSV/TEXT/Workbooks.
This comment was minimized by the moderator on the site
Hey there,
I was wondering if we can use this macro to split the workbook into csv files
I've changed the VBA as below, replacing "xlsx" with "csv", but it doesn't work:
Application.ActiveWorkbook.SaveAs Filename:=xPath & "\" & xWs.Name & ".csv"
Thanks for your help!
This comment was minimized by the moderator on the site
Hi Kevin,
It recommends trying the fourth method to solve your problem. Kutools for Excel can be freely trial for 30 days. And the Split Workbook feature of Kutools for Excel can solve the problem easily.
This comment was minimized by the moderator on the site
Very helpful code. Just had one question. How can I make these excel files read-only. I tried the below but it did not work.

Application.ActiveWorkbook.ChangeFileAccess Mode:=xlReadOnly
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations