Link to home
Start Free TrialLog in
Avatar of rfreud
rfreud

asked on

Complex Select statement syntax in VBA

Hello - I am having trouble with the syntax for a SELECT statement that involves selecting records between two dates and where the desired records meet two conditions that are characterized by strings.  The portion of the select statement that selects records between the two dates works fine all by itself, but when I try to add the string parameters I get a data type mismatch error.  The string parameters appear to be numbers, but they are actually strings.  They are strings assigned to states and counties. They are known as FIPS codes.  Each state has a FIPS code and each county within each state has a FIPS code.  Again, the values look like integers, but they are strings.  Here is the line of code that selects records that fall within two dates that works fine:
rst2.Open "Select * From [qry_NumberOfClosings_ByCounty] where clsng_dt between #" & dStartDate & "# AND #" & dEndDate & "#"

Here is the line with addition of the attempt to add the FIPS codes as additional parameters.  (BTW, the variable names are dimensioned correctly as strings):

rst2.Open "Select * From [qry_NumberOfClosings_ByCounty] where clsng_dt between #" & dStartDate & "# AND #" & dEndDate & "#" And """fips_st_cd = " & strStateFIPS & """" And """fips_cnty_cd =" & strCountyFIPS & """"

In this case, fips_st_cd and fips_cnty_cd are columns in the underlying query.  

Thanks very much in advance for your help.
Ron
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rfreud
rfreud

ASKER

Thanks a million for your accurate and quick assistance. I will try and learn from this.  Really really appreciate it.....
Ron
Welcome Ron.


»bp
Avatar of rfreud

ASKER

This worked great!  Thanks very very much...