office交流網(wǎng)--QQ交流群號(hào)

Access培訓(xùn)群:792054000         Excel免費(fèi)交流群群:686050929          Outlook交流群:221378704    

Word交流群:218156588             PPT交流群:324131555

access篩選窗體記錄

2020-07-05 08:00:00
tmtony8
原創(chuàng)
14285

在access程序中,我們對(duì)數(shù)據(jù)進(jìn)行查詢篩選。

如圖,在連續(xù)窗體中,我們通過一個(gè)金額數(shù)值范圍來篩選數(shù)據(jù)。


    Dim db As DAO.Database
    Dim rs As DAO.Recordset
    Dim strje As String
    Dim strje1 As String
    Dim strje2 As String
    Set db = CurrentDb()
    Set rs = db.OpenRecordset("銷售記錄", dbOpenDynaset)

'設(shè)置篩選參數(shù)
    strje1 = "[金額]>=" & txt1
    strje2 = "[金額]<=" & txt2
    strje = strje1 & " and " & strje2 
'執(zhí)行篩選操作
    rs.Filter = strje 
    Set rs = rs.OpenRecordset
    Set Me.Recordset = rs
    Me.Requery
    End If
    Set rs = Nothing
    Set db = Nothing


    分享
    文章分類
    聯(lián)系我們
    聯(lián)系人: 王先生
    Email: 18449932@qq.com
    QQ: 18449932
    微博: officecn01
    移動(dòng)訪問