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 BY dbo_Welders.accept
PIVOT dbo_Welders.accept;
I am trying to count the As' and Rs'and total for each row.
I have a problem getting the values of either column to populate if one is null
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 BY dbo_Welders.accept
PIVOT dbo_Welders.accept;
I am trying to count the As' and Rs'and total for each row.
I have a problem getting the values of either column to populate if one is null