Hello All ,
I can't seem to add totals to my report. I have based my report on a query (SQL view below):
Table is the name of my table for tis purpose. The code is almost there but I know that something is wrong because I keep getting the dreaded #Error message when I try to view this report. Can someone help? I need HELP ASAP!
Chinyere
I can't seem to add totals to my report. I have based my report on a query (SQL view below):
Code:
SELECT table.Lname & ", " & table.Fname AS FULLNAME, table.Abbrev, table.First_Participant, table.Attn_02
FROM table
WHERE (((table.First_Time)=Yes) AND ((table.Attn_02)=Yes)) AND =Abs(Sum([table].[First_Participant]=True And [table].[Attn_02]=True))
ORDER BY table.Lname & ", " & table.Fname;
Table is the name of my table for tis purpose. The code is almost there but I know that something is wrong because I keep getting the dreaded #Error message when I try to view this report. Can someone help? I need HELP ASAP!
Chinyere