Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've prepared a query in Access that calculates a number that I want to display in Excel, using VBA and ADO. Here's the query in Access:
PARAMETERS [p_month] DateTime; SELECT Count(*) AS [Number] FROM (SELECT DISTINCT Occupancy.PersonID FROM Occupancy WHERE (((Occupancy.Month)=[p_month])) ) AS [Table]; So, the query accepts a parameter and returns a value. Because it's just a value, I figure I won't need to construct a recordset object. All examples I've seen so far returns a recordset, but I hope to make this simple and fast. How would you call this query from VBA and how do you extract the return value? Gustaf |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
pass parameter to access query | Links and Linking in Excel | |||
Linking parameter query from Access to pivot table in Excel | Excel Discussion (Misc queries) | |||
Cell value as parameter for VBA access query | Excel Programming | |||
How to use a Access Query that as a parameter into Excel database query | Excel Discussion (Misc queries) | |||
Pass Parameter to Access Query | Excel Programming |