Hi All
I have a query that should be a normal 'select' query but keeps askinig me for a parameter.
This is the query:
SELECT tbltransactionsbycatthismonth.key, (SELECT Sum([tbltransactionsbycatthismonth].[value]) AS Total
FROM [tbltransactionsbycatthismonth]
WHERE ((([tbltransactionsbycatthismonth].[key])<=[tbl_Alias].[key])) AS Total
FROM tbltransactionsbycatthismonth AS tbl_Alias;
This is the parameter its asking for:
tbltransactionsbycatthismonth.key
the field 'key' is the autonumber field within the table.
Any ideas ?
Dan
I have a query that should be a normal 'select' query but keeps askinig me for a parameter.
This is the query:
SELECT tbltransactionsbycatthismonth.key, (SELECT Sum([tbltransactionsbycatthismonth].[value]) AS Total
FROM [tbltransactionsbycatthismonth]
WHERE ((([tbltransactionsbycatthismonth].[key])<=[tbl_Alias].[key])) AS Total
FROM tbltransactionsbycatthismonth AS tbl_Alias;
This is the parameter its asking for:
tbltransactionsbycatthismonth.key
the field 'key' is the autonumber field within the table.
Any ideas ?
Dan