Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7916387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:47:22+00:00 2026-06-03T14:47:22+00:00

I have been accustomed to do recordssets in the following format: Dim rs As

  • 0

I have been accustomed to do recordssets in the following format:

Dim rs As DAO.Recordset
Dim strSQL As String

strSQL = "Select field1, field2 from myTable where field1 > 30"

Set rs = CurrentDb.OpenRecordset(strSQL)

'... Do wahtever using rs.

Is it possible to use an already created query instead of text and giving it the where clause?

This is a linked table to a SQL Server 2008 Database. I like to save simple queries in Access.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T14:47:24+00:00Added an answer on June 3, 2026 at 2:47 pm

    You can either

    • Use a query that has parameters and specify values for parameters provided that the query uses parameters.

      Dim dbs As DAO.Database
      Dim qdf As DAO.QueryDef
      Dim prm As DAO.Parameter
      Dim rst As DAO.Recordset
      
      Set qdf = CurrentDb.QueryDefs("qry_SomeQueryWithParameters")
      
      qdf.Parameters("SomeParam").Value = "whatever"
      
      Set rst = qdf.OpenRecordset
      

    or

    • Specify a query name as the command and use the Filter property on the recordset
    
        Dim rs As DAO.Recordset
        Dim rsFiltered As DAO.Recordset
    
    
        Set rs = CurrentDb.OpenRecordset(qry_SomeQueryWithoutParameters)
    
        rs.Filter = "field1 > 30"
        set rsFiltered  = rs.OpenRecordset
    
    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been struggling with this for quite some time having been accustomed to
Have been trying to encrypt an xml file to a string so that I
Have been searching how to convert a dictionary to a string. But the results
Have been following Rails Tutorial by Michael Hart rails version 3.0 on mac OS
Have been following this fabulous tutorial . Being new to Javascript and functional programming,
have been away from Android for more than a year, trying to pick up
Have been looking at the MVC storefront and see that IQueryable is returned from
have been able to output images from BLOB, however I am now wanting to
Have been working on this question for a couple hours and have come close
Have been looking on some tutorials for drawing canvas using SurfaceView, but the only

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.