Aktif Projede kullanılan referansları, aktif çalışma sayfası a2 den itibaren yaz?

Katılım
2 Mart 2005
Mesajlar
2,960
Excel Vers. ve Dili
ev: Ofis 2007- Win Xp
iş: Ofis 2010- Win Vista

Aktif Projede kullanılan referansları, aktif çalışma sayfası a2 den itibaren yaz? komutu nasıl denir?

"A" & i.value = ref.ad
"b" & i.value = dzn.yol
"b" & i.value = dsy.ad

gibi
 

Levent Menteşoğlu

Administrator
Yönetici
Admin
Katılım
13 Ekim 2004
Mesajlar
16,058
Excel Vers. ve Dili
Excel 2010-32 bit-Türkçe
Excel 365 -32 bit-Türkçe
Aşağıdaki kodu deneyin.

Kod:
Sub referanslistesi()
Set s1 = Sheets("sayfa2")
For a = 1 To ThisWorkbook.VBProject.References.Count
s1.Cells(a, "a") = ThisWorkbook.VBProject.References.Item(a).Name
s1.Cells(a, "b") = ThisWorkbook.VBProject.References.Item(a).Description
s1.Cells(a, "c") = ThisWorkbook.VBProject.References.Item(a).FullPath
s1.Cells(a, "d") = ThisWorkbook.VBProject.References.Item(a).GUID
Next
End Sub
 
Katılım
2 Mart 2005
Mesajlar
2,960
Excel Vers. ve Dili
ev: Ofis 2007- Win Xp
iş: Ofis 2010- Win Vista
teşekkür ederim hocam
 
Üst