Hey everyone,
I serched around and found a couple of threads but being so new at this part of access, I am completely confused in adding in a date range selection.
Here is what I have for my cross-tab, which is a fairly simple one.
TRANSFORM Count(Workorders.WorkOrderID) AS CountOfWorkOrderID
SELECT Workorders.cboManufacturer, Workorders.cboModels, Count(Workorders.WorkOrderID) AS [Total Of WorkOrderID]
FROM Workorders
GROUP BY Workorders.cboManufacturer, Workorders.cboModels
PIVOT Workorders.cboCategory;
I am trying to add a date field called "txtDateToRepair" so I can select which month I want the report to show the data from.
One of the threads I saw earlier went through and defined a date field, and had them add some code in, but every time I tried it, all I got were errors like "statement after end of sql statement" or something like that.
Any help would be extremely appreciated!!
Richard
I serched around and found a couple of threads but being so new at this part of access, I am completely confused in adding in a date range selection.
Here is what I have for my cross-tab, which is a fairly simple one.
TRANSFORM Count(Workorders.WorkOrderID) AS CountOfWorkOrderID
SELECT Workorders.cboManufacturer, Workorders.cboModels, Count(Workorders.WorkOrderID) AS [Total Of WorkOrderID]
FROM Workorders
GROUP BY Workorders.cboManufacturer, Workorders.cboModels
PIVOT Workorders.cboCategory;
I am trying to add a date field called "txtDateToRepair" so I can select which month I want the report to show the data from.
One of the threads I saw earlier went through and defined a date field, and had them add some code in, but every time I tried it, all I got were errors like "statement after end of sql statement" or something like that.
Any help would be extremely appreciated!!
Richard