Queries — Access Vb Code For Calling
' Opens the query "qryMonthlySales" in a read-only datasheet DoCmd.OpenQuery "qryMonthlySales", acViewNormal, acReadOnly Use code with caution. Copied to clipboard Easy to use; supports standard Access prompts. Cons: Not ideal for "behind-the-scenes" data updates. ⚙️ 2. Executing Action Queries (Hidden)
To "look" at the data returned by a Select query inside your code, open it as a Recordset. Access Vb Code For Calling Queries
It requires you to manually turn off warnings using DoCmd.SetWarnings False . ' Opens the query "qryMonthlySales" in a read-only