- Katılım
- 4 Ocak 2006
- Mesajlar
- 12,073
- Excel Vers. ve Dili
-
İş : Ofis 365 - Türkçe
Ev: Ofis 365 - Türkçe
Aşağıdaki kod istediğiniz işlemi yapıyor görünüyor:
PHP:
Sub donanim()
Set s1 = Sheets("BİGM DİZÜSTÜ ENVANTER")
Set s2 = Sheets("İCMAL")
s2.[B4:D9].ClearContents
son = WorksheetFunction.Max(20, s1.Cells(Rows.Count, "E").End(3).Row)
Set con = VBA.CreateObject("adodb.Connection")
con.Open "provider=microsoft.ace.oledb.12.0;data source=" & _
ThisWorkbook.FullName & ";extended properties=""Excel 12.0;hdr=yes"""
sorgu = "select distinct [DONANIM TİPİ] from[" & s1.Name & "$] where [DONANIM TİPİ] is not null"
Set rs = con.Execute(sorgu)
s2.[B4].CopyFromRecordset rs
End Sub