Hi all,
Currently i have a select query which looks like this.
SELECT [TBL Base Data].[Aircraft Model], [TBL Base Data].[Unit Description], [TBL Base Data].[Removal Date], [TBL Base Data].[Approved], [TBL Base Data].[Failure Type], [TBL Base Data].[Failure Mode]
FROM [TBL Base Data]
GROUP BY [TBL Base Data].[Aircraft Model], [TBL Base Data].[Unit Description], [TBL Base Data].[Removal Date], [TBL Base Data].[Approved], [TBL Base Data].[Failure Type], [TBL Base Data].[Failure Mode];
What can i do to change this so when the query is ranthe user can select:-
Aircraft Model is picked from a list from a table?
same with unit description?
Removal Date is automatically grouped by month? (current form "dd/mm/yyyy"
Approved is a check box which shld be "YES" for all records on search.
Failure Type shld be "F" for all records on search.
and the failure mode is a set choice of abbreviations whichare listed and a total is given for each month.
sorry for the long post.... but i'm gettin flustered here :/
thx all
Will
Currently i have a select query which looks like this.
SELECT [TBL Base Data].[Aircraft Model], [TBL Base Data].[Unit Description], [TBL Base Data].[Removal Date], [TBL Base Data].[Approved], [TBL Base Data].[Failure Type], [TBL Base Data].[Failure Mode]
FROM [TBL Base Data]
GROUP BY [TBL Base Data].[Aircraft Model], [TBL Base Data].[Unit Description], [TBL Base Data].[Removal Date], [TBL Base Data].[Approved], [TBL Base Data].[Failure Type], [TBL Base Data].[Failure Mode];
What can i do to change this so when the query is ranthe user can select:-
Aircraft Model is picked from a list from a table?
same with unit description?
Removal Date is automatically grouped by month? (current form "dd/mm/yyyy"
Approved is a check box which shld be "YES" for all records on search.
Failure Type shld be "F" for all records on search.
and the failure mode is a set choice of abbreviations whichare listed and a total is given for each month.
sorry for the long post.... but i'm gettin flustered here :/
thx all
Will