R
RickLM
I have a very basic understanding of “coding†and am now way out of my league.
I would like to be able to run Query(s) to get totals for “open†or “closedâ€
or “all†ORDERS by Code3 and State with only following headers.
Open or Closed or All Code3 State
ID# Total of ID#/State
The closest I have been able to come has been with ListofOrders_Crosstab2
below:
TRANSFORM Count(ListofORDERS.Code3) AS CountOfCode3
SELECT ListofORDERS.Code3, Count(ListofORDERS.Code3) AS CountOfCode31
FROM ListofORDERS
GROUP BY ListofORDERS.Code3
PIVOT ListofORDERS.State;
Thanks for any help
I would like to be able to run Query(s) to get totals for “open†or “closedâ€
or “all†ORDERS by Code3 and State with only following headers.
Open or Closed or All Code3 State
ID# Total of ID#/State
The closest I have been able to come has been with ListofOrders_Crosstab2
below:
TRANSFORM Count(ListofORDERS.Code3) AS CountOfCode3
SELECT ListofORDERS.Code3, Count(ListofORDERS.Code3) AS CountOfCode31
FROM ListofORDERS
GROUP BY ListofORDERS.Code3
PIVOT ListofORDERS.State;
Thanks for any help