Sub ハイパーリンクを削除して保存する処理()
Dim targetWb As Workbook, targetWsh As Worksheet
Dim strFolderPath As String
strFolderPath = ThisWorkbook.Path & "\指定フォルダ\"
Application.ScreenUpdating = False
do
Set targetWb = Workbooks.Open("ファイルパス")
Set targetWsh = targetWb.Sheets(1)'対象シート指定
With targetWsh
If .Hyperlinks.Count > 0 Then
.Hyperlinks.Delete
End If
End With
If targetWb.Saved = False Then targetWb.Save
targetWb.Close
Set targetWsh = Nothing
Set targetWb = Nothing
Loop
Application.ScreenUpdating = True
Application.StatusBar = False
End Sub