九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
EXCEL(VBA)~SQL 經(jīng)典寫(xiě)法范本匯集(二)[Access軟件網(wǎng)]

EXCEL(VBA)~SQL 經(jīng)典寫(xiě)法范本匯集(二)

來(lái)源:原創(chuàng)  點(diǎn)擊數(shù):2787  評(píng)論數(shù):0 

時(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

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
VBA
EXCEL vba里使用SQL的方法
Excel VBA ADO SQL入門(mén)教程024:初識(shí)Recordset對(duì)象
分享Excel VBA中SQL查詢模塊代碼
EXCEL日?qǐng)?bào)自動(dòng)化_2
Excel VBA 連接各種數(shù)據(jù)庫(kù)(三) VBA連接SQL Server數(shù)據(jù)庫(kù)
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服