S
steve12173
Whenever I run my query, it is asking for a parameter that is not a part of
the parameters. Here is the SQL for the query:
SELECT tblProspectComplete.Destination,
Count(tblProspectComplete.Destination) AS CountOfDestination,
Sum(tblProspectComplete.[InitialR/OAmt]) AS [SumOfInitialR/OAmt]
FROM tblProspectComplete
GROUP BY tblProspectComplete.Destination, tblProspectComplete.Funded
HAVING (((tblProspectComplete.Funded)=True) AND
((Last(tblProspectComplete.InitialDate)) Between
[Forms]![frmWhereWeAreDest]![StartDate] And
[Forms]![frmWhereWeAreDest]![EndDate]));
When I try to run the query it asks for the tblProspectsComplete.SSN
Any reason why it would ask for something that is not a part of the query?
the parameters. Here is the SQL for the query:
SELECT tblProspectComplete.Destination,
Count(tblProspectComplete.Destination) AS CountOfDestination,
Sum(tblProspectComplete.[InitialR/OAmt]) AS [SumOfInitialR/OAmt]
FROM tblProspectComplete
GROUP BY tblProspectComplete.Destination, tblProspectComplete.Funded
HAVING (((tblProspectComplete.Funded)=True) AND
((Last(tblProspectComplete.InitialDate)) Between
[Forms]![frmWhereWeAreDest]![StartDate] And
[Forms]![frmWhereWeAreDest]![EndDate]));
When I try to run the query it asks for the tblProspectsComplete.SSN
Any reason why it would ask for something that is not a part of the query?