Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jvic

  1. jvic

    I am trying to count two values in one column in access 2003

    TRANSFORM Count(dbo_WL.material) AS CountOfmaterial SELECT dbo_WL.material, Count(dbo_WL.weld_no) AS CountOfweld_no1 FROM dbo_Welders RIGHT JOIN dbo_WL ON dbo_Welders.wl_row_id = dbo_WL.row_id WHERE (((dbo_WL.active_flag)=1) AND ((dbo_Welders.active_flag)=1)) GROUP BY dbo_WL.material PIVOT...
  2. jvic

    I need to total the A and Rs' seperately from the accept column

    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...
  3. jvic

    I am trying to count two values in one column in access 2003

    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...

Part and Inventory Search

Back
Top