프레젠테이션을 만들고 멀티미디어 개체 및 텍스트를 사용한 특수 효과와 같은 그래픽 효과를 추가하는 도구를 제공하는 Microsoft 프레젠테이션 그래픽 제품군입니다.
아래 VBA 코드를 PPT에서 돌려보세요. 그러면 한번에 링크들을 다 바꿀수 있습니다.
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



PowerPoint에 포함되어 있는 차트 데이터를 편집하기 위해서는 차트 작성에 사용된 Excel 원본
데이터가 동일한 컴퓨터에 존재해야 합니다. 


2. Excel 파일이 제대로 연결이 되면 <알림> 대화상자 아래에 원본 파일의 경로가 표시됩니다.
PowerPoint 2007 버전에서는 <파일 연결 편집>의 위치가 PowerPoint 2010과 다릅니다.