엑셀에서 차트를 만든 다음,

복사해서 붙여넣기로 파워포인트 자료를 만들었으나..


파일의 위치 또는 이름을 변경하거나,

파워포인트 파일을 다른 컴퓨터에서 편집하고 자 할 때, 엑셀 파일 소스가 있음에도 편집이 안될 경우

링크된 파일의 정보를 변경해줌으로써 데이터 편집이 가능합니다.



파일 연결 편집 방법


1. 파워포인트 2007

       오피스탭 > 준비(E) > 파일연결 편집(L)


2. 파워포인트 2010

        파일탭 > 정보 > 파일연결 편집



[ 그림으로 확인 ]


1. 파워포인트 2007

  080712_1234_powerpoint213.png


2. 파워포인트 2010

  080712_1234_powerpoint26.png




관련 사이트 : http://answers.microsoft.com/ko-kr/office/forum/office_2007-powerpoint/powerpoint-%ED%8C%8C%EC%9D%BC-%EC%97%B0%EA%B2%B0/0110eb8e-8644-4cc0-a9a4-10512a8311ad




파일 연결 일괄 편집 VBA


Sub UpdateLinks()
    Dim ExcelFile
    Dim exl As Object
    Set exl = CreateObject("Excel.Application")

     'Open a dialog box to promt for the new source file.
    ExcelFile = exl.Application.GetOpenFilename(, , "Select Excel File")

    Dim i As Integer
    Dim k As Integer

     'Go through every slide
    For i = 1 To ActivePresentation.Slides.Count
        With ActivePresentation.Slides(i)
             'Go through every shape on every slide
            For k = 1 To .Shapes.Count
                'Turn of error checking s that it doesn 't crash if the current shape doesn't already have a link'
                On Error Resume Next
                 'Set the source to be the same as teh file chosen in the opening dialog box
                .Shapes(k).LinkFormat.SourceFullName = ExcelFile
                If .Shapes(k).LinkFormat.SourceFullName = ExcelFile Then
                     'If the change was successful then also set it to update automatically
                    .Shapes(k).LinkFormat.AutoUpdate = ppUpdateOptionAutomatic 'other option is ppUpdateOptionManual
                End If
                On Error GoTo 0
            Next k
        End With
    Next i

End Sub




파일 연결 편집을 자주 사용하거나,

메뉴에서 찾기가 어렵다면.. 빠른 실행 도구 모음에 등록해서 사용하는 것도 한 방법이다.


파워포인트 옵션 창에서

"빠른 실행 도구 모음" > "모든 명령" > "파일 연결 편집" 명령 선택 뒤 "추가"버튼을 눌러주면 등록된다.



abyul.com_029_.jpg




빠른 실행 도구모음에 등록된 모습


abyul.com_030_1.jpg








END.


profile