Hi CroCrew et. All,
I am currently working on a quick report that count a total of completed records per Individual. The code that I have will add up all Individual completed records and what I want is to get a total for each of the Individuals per month. For example,
CroCrew
....
....
Total = 2
Jim
....
....
Total = 2
Below is part of the show completed records that I used and wonder if you can help. This is my first time to try to put the code into the format that you and HOPE YOU IT WILL SHOW UP RIGHT. Thanks once again for your help.
I am currently working on a quick report that count a total of completed records per Individual. The code that I have will add up all Individual completed records and what I want is to get a total for each of the Individuals per month. For example,
CroCrew
....
....
Total = 2
Jim
....
....
Total = 2
Below is part of the show completed records that I used and wonder if you can help. This is my first time to try to put the code into the format that you and HOPE YOU IT WILL SHOW UP RIGHT. Thanks once again for your help.
Code:
<TR BGCOLOR="CEEFFF"> <TD> <DIV ALIGN="CENTER">RECORD</DIV></TD> <TD> <DIV ALIGN="CENTER"><STRONG>INDIVIDUAL</STRONG></DIV></TD> <TD> <DIV ALIGN="CENTER"><STRONG>COMPLETE DATE</STRONG></DIV></TD> </TR> <% WHILE NOT RS.EOF Response.Write("<TR>") Response.Write("<TD>" & RS("RecordID") & " </TD>") Response.Write("<TD>" & RS("Individual") & " </TD>") Response.Write("<TD>" & RS("CompleteDate") & " </TD>") Response.Write("</TR>") strCount=strCount + 1 RS.MoveNext Wend RS.Close Conn.Close set Conn = nothing set RS = Nothing Response.Write("<FONT FACE=""HELVETICA,HELV,ARIAL"" COLOR=""#000000"" SIZE=""2"">Total Records: ") Response.Write("</FONT>") Response.Write("<FONT FACE=""HELVETICA,HELV,ARIAL"" COLOR=""#FF0000"" SIZE=""2"">") Response.Write(strCount) %>
Comment