메인 컨텐츠로 가기

Excel에서 워크 시트 이름의 동적 목록을 만드는 방법은 무엇입니까?

통합 문서에 여러 시트가 있고 통합 문서의 새 시트에있는 모든 시트 이름의 동적 목록을 만들려면 어떻게 할 수 있습니까? 이제이 자습서에서는 Excel에서이 임무를 빠르게 완료하는 몇 가지 트릭을 소개합니다.

이름 및 수식 정의를 사용하여 워크 시트 이름의 동적 목록 만들기

VBA 코드로 워크 시트 이름의 동적 목록 만들기

Excel 용 Kutools를 사용하여 동적 워크 시트 이름 목록 만들기 좋은 생각 3

Excel 용 Kutools를 사용하여 동적 워크 시트 이름 목록 표시 좋은 생각 3


1. 빈 시트에서 셀을 선택합니다. 여기서 A1을 선택한 다음 방식 > 이름 정의. 스크린 샷 참조 :
doc-동적-워크시트 이름-목록-1

2. 그런 다음 새 이름 대화 상자에 다음을 입력하십시오. 시트 성함 텍스트 상자 (필요에 따라 변경할 수 있음)를 입력하고 다음 수식을 입력합니다. = SUBSTITUTE (GET.WORKBOOK (1), "["& GET.WORKBOOK (16) & "]", "") Refers to 텍스트 상자에. 스크린 샷보기 :
doc-동적-워크시트 이름-목록-2

3. 클릭 OK. 선택한 셀 (A1)로 이동하여이 수식을 입력합니다. = INDEX (시트, ROWS ($ A $ 1 : $ A1)) (A1은이 수식을 입력하는 셀이고 "시트"는 2 단계에서 정의한 이름입니다) 여기에 입력 한 다음 #REF!까지 자동 채우기 핸들을 아래로 끕니다. 나타납니다.
doc-동적-워크시트 이름-목록-3

: 제거 또는 추가 된 워크 시트가있는 경우 A1로 이동하여 Enter 키를 누른 다음 자동 채우기 핸들을 다시 드래그해야합니다.
doc-동적-워크시트 이름-목록-4


각 시트에 연결할 수있는 워크 시트 이름의 동적 목록을 만들려면 VBA 코드를 사용할 수 있습니다.

1. 새 워크 시트를 만들고 이름을 Index로 바꿉니다. 스크린 샷보기 :

doc-동적-워크시트 이름-목록-5       doc-동적-워크시트 이름-목록-6

2. 색인의 시트 이름을 마우스 오른쪽 버튼으로 클릭하고 코드보기 상황에 맞는 메뉴에서. 스크린 샷보기 :
doc-동적-워크시트 이름-목록-7

3. 팝업 창에서 VBA 코드 아래에 복사하여 붙여 넣습니다.

VBA : 워크 시트 이름의 동적 목록을 만듭니다.

Private Sub Worksheet_Activate()
	'Updateby20150305
	Dim xSheet As Worksheet
	Dim xRow As Integer
	Dim calcState As Long
	Dim scrUpdateState As Long
	Application.ScreenUpdating = False
	xRow                       = 1
	With Me
		.Columns(1).ClearContents
		.Cells(1, 1) = "INDEX"
		.Cells(1, 1).Name = "Index"
	End With
	For Each xSheet In Application.Worksheets
		If xSheet.Name <> Me.Name Then
			xRow                     = xRow + 1
			With xSheet
				.Range("A1").Name = "Start_" & xSheet.Index
				.Hyperlinks.Add anchor: = .Range("A1"), Address: = "", _
				SubAddress:             = "Index", TextToDisplay: = "Back to Index"
			End With
			Me.Hyperlinks.Add anchor: = Me.Cells(xRow, 1), Address: = "", _
			SubAddress: = "Start_" & xSheet.Index, TextToDisplay: = xSheet.Name
		End If
	Next
	Application.ScreenUpdating = True
End Sub

4. 클릭 달리기 or F5 VBA를 실행하기 위해 이제 워크 시트 이름의 동적 목록이 생성됩니다.
doc-동적-워크시트 이름-목록-8

팁 :

1. 워크 북의 워크 시트를 삭제하거나 삽입하면 워크 시트 이름 목록이 자동으로 변경됩니다.

2. 시트 명리스트의 시트 명을 클릭하면 시트로 이동합니다.

위의 두 가지 방법은 충분히 설득력이 없습니다. 새로운 유틸리티에 관심이 있다면 다음 두 가지 방법으로이 작업을 더 쉽게 할 수 있습니다.


 통합 문서의 모든 워크 시트 이름을 빠르게 나열하고 원본 시트에 연결하려는 경우 다음을 사용할 수 있습니다. Excel 용 Kutools시트 이름 목록 만들기.

Excel 용 Kutools, 이상과 300 편리한 기능으로 작업이 더 쉬워집니다. 

무료 설치 Excel 용 Kutools는 다음과 같이하십시오.

1. 클릭 쿠툴즈 플러스 > 워크 시트 > 시트 이름 목록 만들기. 스크린 샷보기 :

문서 동적 워크 시트 이름 17

2. 에서 시트 이름 목록 만들기 대화:

 문서 동적 워크 시트 이름 목록 2
(1) 필요한 색인 스타일 확인 시트 인덱스 스타일 섹션;
(2) 데이터를 입력하여 새 색인 시트의 이름을 지정합니다. 시트 색인에 대한 시트 이름 지정 텍스트 상자;
(3) 추가 된 인덱스 시트를 배치 할 위치를 지정합니다. 시트 색인 삽입 명부;
(4) 단일 목록에 시트 이름을 표시하려면 시트 색인 표시 명부.

3. 클릭 Ok. 이제 시트 이름이 나열된 것을 볼 수 있습니다.
doc kutools 시트 목록 만들기 3

팁 :

1. 시트 이름을 클릭하면 원본 시트로 빠르게 이동할 수 있습니다.

2. 목록 또는 시트 이름은 시트 삽입 또는 삭제와 함께 동적으로 변경 될 수 없습니다.

3. 사실, 당신은 또한 버튼 목록을 생성하여 상대 시트를 연결할 수 있습니다. 버튼 및 매크로 포함 대화 상자에서. screeshshot 참조 :
doc kutools 시트 목록 만들기 4

시트 이름 목록 만들기에 대한 자세한 내용을 보려면 여기를 클릭하십시오.


함께라면 Excel 용 Kutools, 당신은 또한 사용할 수 있습니다 카테고리 창에 링크 가능한 워크 시트 이름을 표시하는 유틸리티

무료 설치 Excel 용 Kutools는 다음과 같이하십시오.

1. 클릭 쿠툴 > 카테고리. 딸깍 하는 소리 통합 문서 및 시트 통합 문서와 워크 시트를 표시하고 통합 문서를 선택할 수 있습니다. 그러면 해당 워크 시트가 카테고리 창유리. 스크린 샷보기 :
문서 탐색 창 1   

팁 :

삭제 또는 추가 된 워크 시트가있는 경우 새로 고침 버튼 문서 탐색 창 2 FBI 증오 범죄 보고서 내비게이션n 창을 사용하여 워크 시트 이름을 새로 고칩니다.

탐색에 대한 자세한 내용을 보려면 여기를 클릭하십시오.

최고의 사무 생산성 도구

🤖 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 (13)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Hallo. hoe zou ik dit kunnen doen om hetzelfde te doen maar met een welbepaade cel van verschillende werkbladen. Bv. een leeg tabblad. mijn andere werkbladen hebben allemaal dezelfde lay-out, maar in iedere cel een andere tekst. Nu zou ik graag in mijn leeg tabblad in Cel A1 de gegevens terugvinden van tabblad1 cel B3. Maar dan zou ik graag in Cel A2 de gegevens terugvinden van tabblad 2 cel 3. En zou naar beneden en dit in een beweging. We kunnen allemaal afzonderlijk doen, maar als er 500 werkbladen zijn, is dit onmogelijk.

Merci voor den input.
This comment was minimized by the moderator on the site
Hi, I guess you want to list all same cells across multiple sheets, if so, there are two tutorials may help you. Please visit:
How to reference same cell from multiple worksheets in Excel?
How to create a list from same cells across multiple sheets in Excel?
Hope it is helpful.
This comment was minimized by the moderator on the site
Em português brasileiro, GET.WORKBOOK é identificado como uma função no Gerenciador de Nomes para criar o nome "Sheets", mas ao referenciar "Sheets" numa célula, aparece o erro "#NOME?". Tentei várias vezes, inclusive com a sugestão de traduzir GET.WORKBOOK para OBTER.LIVRO mas não funcionou.
This comment was minimized by the moderator on the site
Hi, try this: =SUBSTITUIR(INFO.PASTA.TRABALHO(1),"["&INFO.PASTA.TRABALHO(16)&"]","")
This comment was minimized by the moderator on the site
Thanks for this helpful info. I created a dynamic list with VBA code in the Index tab. I found that it only updates when I click back to the Index tab, though. Is there a way to ensure it auto updates as soon as a new tab is created? I refer to the tab names elsewhere in the workbook and others will be using it so I'm trying to make it seamless. Thank you!
This comment was minimized by the moderator on the site
Sorry, I do not find that code can finish your job.
This comment was minimized by the moderator on the site
Or you can simply rightClick either the left or right tab-horizontal-scroll arrow at the bottomLeft, and then click the worksheet name (from the simple vertical list) that you want to jump to.
This comment was minimized by the moderator on the site
Just what I needed and worked perfectly. Thank you!
This comment was minimized by the moderator on the site
Defining the name "Sheets" in the define name DOES NOT WORK. The "refers to" box will not save the formula as typed and converts it to a text string.
This comment was minimized by the moderator on the site
how can I use this code to create the list of worksheets in horizontal order instead of vertical? is it possible?
This comment was minimized by the moderator on the site
Thank you. It is very useful. :D
This comment was minimized by the moderator on the site
How can i remove the links to each sheets and how to not include the "sheet1" and "Index" sheet? Private Sub Worksheet_Activate() 'Updateby20150305 Dim xSheet As Worksheet Dim xRow As Integer Dim calcState As Long Dim scrUpdateState As Long Application.ScreenUpdating = False xRow = 1 With Me .Columns(1).ClearContents .Cells(1, 1) = "INDEX" .Cells(1, 1).Name = "Index" End With For Each xSheet In Application.Worksheets If xSheet.Name Me.Name Then xRow = xRow + 1 With xSheet .Range("A1").Name = "Start_" & xSheet.Index .Hyperlinks.Add anchor: = .Range("A1"), Address: = "", _ SubAddress: = "Index", TextToDisplay: = "Back to Index" End With Me.Hyperlinks.Add anchor: = Me.Cells(xRow, 1), Address: = "", _ SubAddress: = "Start_" & xSheet.Index, TextToDisplay: = xSheet.Name End If Next Application.ScreenUpdating = True End Sub
This comment was minimized by the moderator on the site
How would I go about editing this code to include a checkbox to the left of the link that I could use to hide rows on a cover sheet? Also how could I insert a row on the worksheets below A1 to have the return to index link show up there?
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations