- Katılım
- 14 Mart 2018
- Mesajlar
- 9
- Excel Vers. ve Dili
- excel 2017
- Altın Üyelik Bitiş Tarihi
- 14/03/2019
Excel tüm köprü adreslerini bir kerede nasıl düzeltebilirim? kod kullanmayı bilmiyorum, çok acil , lütfen yardım edin.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Test()
Dim Link1 As String, Link2 As String, i As Integer
Link1 = "C:\Users\astas1\AppData\Roaming\Microsoft\Excel"
Link2 = "C:\Users\astas1\Desktop\155-255"
Application.ScreenUpdating = False
For Each myLink In ActiveSheet.Hyperlinks
i = i + 1
myLink.Address = Replace(myLink.Address, Link1, Link2)
Next
Application.ScreenUpdating = True
MsgBox "Toplam " & i & " adet link güncellendi !"
End Sub
Sub Test()
Dim Link1 As String, Link2 As String, i As Integer
Link1 = "../../AppData/Roaming/Microsoft/Excel"
Link2 = "../Desktop/155-255"
Application.ScreenUpdating = False
For Each myLink In ActiveSheet.Hyperlinks
i = i + 1
myLink.Address = Replace(myLink.Address, Link1, Link2)
Next
Application.ScreenUpdating = True
MsgBox "Toplam " & i & " adet link güncellendi !"
End Sub
Sub Test2()
Dim Link1 As String, Link2 As String, i As Integer
Dim myLink As Hyperlink
Link1 = "\AppData\Roaming\Microsoft\Excel"
Link2 = "\astas1\Desktop\155-255"
Application.ScreenUpdating = False
For Each myLink In ActiveSheet.Hyperlinks
i = i + 1
myLink.Address = Replace(myLink.Address, "/", "\")
myLink.Address = Replace(myLink.Address, Link1, Link2)
Next
Application.ScreenUpdating = True
MsgBox "Toplam " & i & " adet link güncellendi !"
End Sub