메인 컨텐츠로 가기

Excel에서 모든 링크 (외부 참조)를 찾고 나열하는 방법은 무엇입니까?

Excel에서 외부 참조를 만들어 다른 통합 문서의 셀 내용을 참조합니다. 하지만 엑셀에서 통합 문서의 모든 링크를 나열하고 싶을 때 모든 외부 참조(링크)를 찾아 나열하기가 어려울 것 같습니다. 이 기사의 까다로운 방법은 통합 문서의 모든 링크를 빠르게 찾고 나열하는 데 도움이 됩니다.

찾기 명령으로 모든 링크 찾기 및 나열

VB 매크로로 모든 링크 찾기 및 나열

Excel 용 Kutools로 모든 링크를 찾아 나열하십시오.


화살표 블루 오른쪽 거품 찾기 명령으로 모든 링크 찾기 및 나열

외부 링크에는 대괄호가 포함되어 있기 때문에 [ 전체 통합 문서에서 모든 대괄호 기호를 얻을 수 있다면 외부 링크를 찾을 수 있습니다.

1.  > 찾기 및 선택 > Find 를 열려면 찾기 및 바꾸기 대화 상자. 당신은 또한 열 수 있습니다 찾기 및 바꾸기 눌러 대화 상자 Ctrl 키 + F 열쇠.

2. . 무엇을 찾다: 상자에 대괄호 기호 "의 왼쪽 부분을 입력하십시오.[".

문서 목록 모든 링크 1

3.  옵션 ,에 이내 드롭 다운 목록, 선택 시트 or 통합 문서 링크를 찾고자합니다. 스크린 샷보기 :

문서 목록 모든 링크 2

4. 그런 다음 모두 찾기 단추. 그런 다음 모든 외부 참조를 찾기 및 바꾸기 즉시 대화 상자. 프레스 Ctrl +  다음 스크린 샷과 같이 모든 링크 셀을 선택하려면 :

문서 목록 모든 링크 3

괄호 기호의 왼쪽 부분은 전체 통합 문서의 외부 링크를 찾을 수 있습니다. 내부 링크 및 외부 링크를 포함한 모든 종류의 링크를 찾으려면 느낌표 "를 입력 할 수 있습니다.!" 무엇을 찾기: 상자.


화살표 블루 오른쪽 거품 VB 매크로로 모든 링크 찾기 및 나열

다음 VBA 매크로는 현재 통합 문서의 새 워크 시트에 연결된 모든 원본 통합 문서를 나열하는 데 도움이 될 수 있습니다.

1. 누르고있어. ALT + F11 키를 누르면 Microsoft Visual Basic for Applications 창이 열립니다.

2. 딸깍 하는 소리 끼워 넣다 > 모듈을 클릭하고 모듈 창에 다음 매크로를 붙여 넣습니다.

VBA : Excel의 모든 링크를 나열합니다.

Sub ListLinks()
    Dim xSheet As Worksheet
    Dim xRg As Range
    Dim xCell As Range
    Dim xCount As Long
    Dim xLinkArr() As String
    On Error Resume Next
    For Each xSheet In Worksheets
        Set xRg = xSheet.UsedRange.SpecialCells(xlCellTypeFormulas)
        If xRg Is Nothing Then GoTo LblNext
        For Each xCell In xRg
            If InStr(1, xCell.Formula, "[") > 0 Then
                xCount = xCount + 1
                ReDim Preserve xLinkArr(1 To 2, 1 To xCount)
                xLinkArr(1, xCount) = xCell.Address(, , , True)
                xLinkArr(2, xCount) = "'" & xCell.Formula
           End If
        Next
LblNext:
    Next
    If xCount > 0 Then
        Sheets.Add(Sheets(1)).Name = "Link Sheet"
        Range("A1").Resize(, 2).Value = Array("Location", "Reference")
        Range("A2").Resize(UBound(xLinkArr, 2), UBound(xLinkArr, 1)).Value = Application.Transpose(xLinkArr)
        Columns("A:B").AutoFit
    Else
        MsgBox "No links were found within the active workbook.", vbInformation, "KuTools for Excel"
    End If
End Sub

3. 를 누르십시오 F5 이 매크로를 실행하려면 키를 누르십시오. 그런 다음 다음과 같은 새 워크 시트를 만듭니다. 링크 시트 모든 링크 위치와 링크 된 소스 통합 문서의 이름을 나열하고 한 번에 경로를 저장합니다. 스크린 샷보기 :

문서 목록 모든 링크 4


화살표 블루 오른쪽 거품 Excel 용 Kutools로 모든 링크를 찾아 나열하십시오.

Excel 용 Kutools끊어진 링크 찾기 및 끊기, 활성 워크 시트의 모든 외부 링크를 찾을 수 있으며 동시에 필요에 따라 특정 링크를 끊을 수 있습니다.

설치 한 경우 Excel 용 Kutools, 다음과 같이하십시오.

1. 링크를 찾을 워크 시트를 활성화하고 쿠툴 > (링크) > 끊어진 링크 찾기 및 끊기, 스크린 샷 참조 :

문서 목록 모든 링크 5

2. . 끊어진 링크 찾기 및 끊기 대화 상자에서 필터 선택할 드롭 다운 목록 모든 링크, 활성 워크 시트의 모든 링크가 나열되면 링크 상태도 볼 수 있습니다. OK 링크가 유효 함을 의미합니다. 오류 링크가 끊어 졌음을 의미합니다.

문서 목록 모든 링크 6

노트:

1. 경우 셀보기 목록에서 링크를 클릭하면 옵션이 선택됩니다. 워크 시트에서 링크가 포함 된 특정 셀을 찾아 탐색합니다.

2. 링크를 끊으려면 목록에서 링크를 선택한 다음 링크 끊기.

Excel 용 Kutools 및 무료 평가판을 지금 다운로드하려면 클릭하십시오!

이 기능에 대해 더 알고 싶다면 끊어진 링크 찾기 및 끊기.


화살표 블루 오른쪽 거품 Excel 용 Kutools로 모든 링크를 찾아 나열하십시오.

Excel 용 Kutools 300 개 이상의 편리한 Excel 도구가 포함되어 있습니다. 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 (40)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Can a tab name have a link?
This comment was minimized by the moderator on the site
Hoi, ik zit er over te denken om een excel cursus te volgen bij computertraining.nl. Heeft iemand daar ervaring mee?
This comment was minimized by the moderator on the site
Hi, would it be possible to add the external links in the above VBA code to a particular cell range in a sheet in the workbook instead of adding a new sheet?
This comment was minimized by the moderator on the site
Thank you so much. This problem has bedeviled me for years. The simple but effective find "left bracket" worked perfectly for my needs.
This comment was minimized by the moderator on the site
"Because external links contains bracket [ sign," Sorry, that's not exactly true. MVPs Wyman and Walkenbach even get that wrong (perhaps many others too.) This is one clear exception =VLOOKUP(A1,'C:\FOO.XLS'!SomeRangeName,2,FALSE)
This comment was minimized by the moderator on the site
Worked perfectly. I was constantly getting an "update external links" question, and didn't know that I had any. Using the Find, [, and Options of find in Workbook found all of them! Thanks, Rob
This comment was minimized by the moderator on the site
Is it possible to get a list of all the external links that are connected to one source document. I'm guessing that somewhere in the source document, this information should be available, but I've been unable to find it.
This comment was minimized by the moderator on the site
Simply remove the data validation by selecting the whole sheet and click on new validation rule. It will delete all old validation rules, even if you do not enter a new one. There can also be links in 'named ranges' and hidden named ranged. Google it to find the solutions.
This comment was minimized by the moderator on the site
I had an Excel file that when opened displayed a message regarding a missing external link. No such link could be found and various tools- Kutools, FormulaDesk etc did find nothing. Finally- I solved the problem by opening the xlsx file as zip+xml and deleting the folder dealing with external links (if you want more details- ask me).
This comment was minimized by the moderator on the site
Shazam! This tip is awesome.
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