時(shí) 間:2012-04-07 09:09:03
作 者:歡樂(lè)小爪 ID:20149 城市:杭州
摘 要:EXCEL(VBA)~SQL 經(jīng)典寫(xiě)法范本匯集(二)
正 文:
一)
選擇供應(yīng)商和選擇月份記錄的查詢
原創(chuàng):小爪 日期:2008-5-10
Private Sub CommandButton1_Click()
Range('a5:k1000').ClearContents
Set conn = CreateObject('ADODB.Connection')
conn.Open 'provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;imex=1';data source=' & ThisWorkbook.FullName
If Range('b3') = '全部' And Range('d3') = '全部' Then
Sql = 'select * from [數(shù)據(jù)源$a3:i1000] '
GoTo 100
End If
If Range('b3') = '全部' Then
'
Sql = 'select * from [數(shù)據(jù)源$a3:i1000] where month(日期) = '' & [d3] & '''
GoTo 100
End If
If Range('d3') = '全部' Then
Sql = 'select * from [數(shù)據(jù)源$a3:i1000] where 供應(yīng)商= '' & [b3] & '''
GoTo 100
End If
If Range('d3') <> '全部' And Range('d3') <> '全部' Then
i = Range('d3')
Sql = 'select * from [數(shù)據(jù)源$a3:i1000] where (供應(yīng)商= '' & [b3] & '') and (month(日期) = '' & i & '')'
GoTo 100
End If
100:
Sheets('統(tǒng)計(jì)').Range('a5').CopyFromRecordset conn.Execute(Sql)
conn.Close: Set conn = Nothing
End Sub
-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
二)查詢某地的 收款記錄工作表 的收款日期,憑證號(hào),金額,摘要
和 送貨記錄工作表 的發(fā)貨日期,單號(hào),金額,折扣,贈(zèng)送,退貨,備注
原創(chuàng):小爪 日期:2008-5-6
實(shí)例地址:E:\歡樂(lè)--office\小爪-excel\小爪-vba\ADO+SQL
Private Sub CommandButton1_Click()
Range('a6:k16').ClearContents
Set conn = CreateObject('ADODB.Connection')
conn.Open 'provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;imex=1';data source=' & ThisWorkbook.FullName
Sql1 = 'select 收款日期,憑證號(hào),金額,摘要 from [收款記錄$B2:F20] where 客戶名稱 = '' & [b2] & '''
Sql2 = 'select 發(fā)貨日期,單號(hào),金額,折扣,贈(zèng)送,退貨,備注 from [送貨記錄$B2:i20] where 客戶名稱 = '' & [b2] & '''
Sheets('套打').Range('a6').CopyFromRecordset conn.Execute(Sql1)
Sheets('套打').Range('e6').CopyFromRecordset conn.Execute(Sql2)
conn.Close: Set conn = Nothing
End Sub
聯(lián)系客服