TRANSFORM Count(dbo_Welders.active_flag) AS CountOfactive_flag
SELECT dbo_Welders.stencil_id, dbo_Welders.fullname
FROM dbo_Welders RIGHT JOIN dbo_WL ON dbo_Welders.wl_row_id = dbo_WL.row_id
WHERE (((dbo_Welders.accept) In ('A','R')))
GROUP BY dbo_Welders.stencil_id, dbo_Welders.fullname
ORDER...
I have a column called Accept with A's and R's in that column.I have used a crosstab query and set accept as the column heading to be able to count the A's and R's seperately on one report.
the accept column then looks like this on the report
A R Total RTs'
1 2 3
but i need it to count...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.