philbullock1223
Registered User.
- Local time
- Today, 16:22
- Joined
- Dec 31, 2011
- Messages
- 55
I am trying to implement some simple code that seems to work fine from within a module, but cannot get it to work from within a form sub.
DAT is a table within the database. DAT1 is a field within DAT.
All I need to do is filter my SV query. I get the error "too few parameters, expeted 2".... WHY!!!??!!
Any help would be great.
Phil
Code:
Dim db As DAO.Database
Dim SVUnfiltered As DAO.Recordset
Dim SV As DAO.Recordset
Set db = CurrentDb
Set SVUnfiltered = db.OpenRecordset("SELECT * FROM DAT", dbOpenDynaset)
SVUnfiltered.Filter = "SVUnfiltered![DAT1] = 'SV'"
Set SV = SVUnfiltered.OpenRecordset
DAT is a table within the database. DAT1 is a field within DAT.
All I need to do is filter my SV query. I get the error "too few parameters, expeted 2".... WHY!!!??!!
Any help would be great.
Phil