DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub listeolustur()
liste = Application.AutoCorrect.ReplacementList
For a = 1 To UBound(liste)
Cells(a, "a") = liste(a, 1)
Cells(a, "b") = liste(a, 2)
Next
End Sub
Sub yukle()
For a = 1 To [a65536].End(3).Row
Application.AutoCorrect.AddReplacement Cells(a, "a"), Cells(a, "b")
Next
End Sub
Cevabınız için çok teşekkür ediyorum. fakat ben biraz deneyimsizin dediğiniz işlemleri nasıl yapabilirim. Yardım edebilirseniz çok sevinirim....Aşağıdaki kod ile mevcut pcnizdeki excele ait otomatik düzetme listesini bir excel dosyasına aktarın.
Daha sonra düzeltme listesini aktyardığınız dosyayı diğer pcde açarak aşağıdaki kodu çalıştırarak listeyi yükleyin.Kod:Sub listeolustur() liste = Application.AutoCorrect.ReplacementList For a = 1 To UBound(liste) Cells(a, "a") = liste(a, 1) Cells(a, "b") = liste(a, 2) Next End Sub
Kod:Sub yukle() For a = 1 To [a65536].End(3).Row Application.AutoCorrect.AddReplacement Cells(a, "a"), Cells(a, "b") Next End Sub