ctechnumber1
Registered User.
- Local time
- Yesterday, 19:25
- Joined
- Jun 20, 2008
- Messages
- 12
I am trying to store the result of a query like the one below which is more than DLookUp will handle.
Can someone tell me how to store the results of this query or like queries in a Variable?
*I have been doing this by using a record set and just getting the first value the storing that.
SELECT Systems.System_Name
FROM Obj_Groups, Systems INNER JOIN Obj_Sections ON Systems.System_ID = Obj_Sections.System_ID
GROUP BY Systems.System_Name
HAVING (([Obj_Groups].[Obj_Group_ID]="1"));
Can someone tell me how to store the results of this query or like queries in a Variable?
*I have been doing this by using a record set and just getting the first value the storing that.
SELECT Systems.System_Name
FROM Obj_Groups, Systems INNER JOIN Obj_Sections ON Systems.System_ID = Obj_Sections.System_ID
GROUP BY Systems.System_Name
HAVING (([Obj_Groups].[Obj_Group_ID]="1"));