rajeshsarin
Registered User.
- Local time
- Tomorrow, 03:08
- Joined
- Sep 25, 2009
- Messages
- 50
Folks,
I want to design a form that looks like the following (see attached)
At intersection of each row and column I want to display the result of a query.
at intersection of visas and 15 days I am displaying result of following query.
SELECT Count(*) AS [No Of Visas Expiring in Next 15 days]
FROM Client
WHERE (((Client.VExpiry_Date) Between Date() And Date()+15) And ((Client.Status) Not Like "*Enquiry*"));
However as intersection of 30 days and visas I want to display result of a
different query, which is:-
SELECT Count(*) AS [No Of Visas Expiring in Next 30 days]
FROM Client
WHERE (((Client.VExpiry_Date) Between Date() And Date()+30) And ((Client.Status) Not Like "*Enquiry*"));
My question is how to display multiple query outputs at each junction.
Cheers
Raj
I want to design a form that looks like the following (see attached)
At intersection of each row and column I want to display the result of a query.
at intersection of visas and 15 days I am displaying result of following query.
SELECT Count(*) AS [No Of Visas Expiring in Next 15 days]
FROM Client
WHERE (((Client.VExpiry_Date) Between Date() And Date()+15) And ((Client.Status) Not Like "*Enquiry*"));
However as intersection of 30 days and visas I want to display result of a
different query, which is:-
SELECT Count(*) AS [No Of Visas Expiring in Next 30 days]
FROM Client
WHERE (((Client.VExpiry_Date) Between Date() And Date()+30) And ((Client.Status) Not Like "*Enquiry*"));
My question is how to display multiple query outputs at each junction.
Cheers
Raj
Attachments
Last edited: