Hello,
I'm a newb here, so please bear with me (this is also my first attempt with Dsum). I've gone through all the posts and still I just can't seem to get my Dsum query to work without it giving me this:
Syntax error (missing operator) in Query section 'Seat_Code<=A1" . I figure I have a quotes missing or in the wrong place (?).
I just want a running sum of how many people (Att_Count) are at each table (Table) in my query (qryDining_Plan_Sun).
Attendee_ID, Last_Name, Table, Seat_Code, Att_Count, RunSum
1 - - - - - -Smith - - - A - - -A1 - - - -3 - - - -3
2 - - - - - -Thomas - -A - - -A2 - - - -1 - - - -4
4 - - - - - -Jones- - - A - - -A4 - - - -1 - - - -5
5 - - - - - -Moore- - - B - - -B5 - - - -1 - - - -1
6 - - - - - -Moore- - - B - - -B6 - - - -4 - - - -5
7 - - - - - -Moore - - -B - - -B7 - - - -2 - - - -7
I'm a newb here, so please bear with me (this is also my first attempt with Dsum). I've gone through all the posts and still I just can't seem to get my Dsum query to work without it giving me this:
Syntax error (missing operator) in Query section 'Seat_Code<=A1" . I figure I have a quotes missing or in the wrong place (?).
I just want a running sum of how many people (Att_Count) are at each table (Table) in my query (qryDining_Plan_Sun).
Attendee_ID, Last_Name, Table, Seat_Code, Att_Count, RunSum
1 - - - - - -Smith - - - A - - -A1 - - - -3 - - - -3
2 - - - - - -Thomas - -A - - -A2 - - - -1 - - - -4
4 - - - - - -Jones- - - A - - -A4 - - - -1 - - - -5
5 - - - - - -Moore- - - B - - -B5 - - - -1 - - - -1
6 - - - - - -Moore- - - B - - -B6 - - - -4 - - - -5
7 - - - - - -Moore - - -B - - -B7 - - - -2 - - - -7
Here is my code: DSum("[Att_Count]","[qryDining_Plan_Sun]","Seat Code<=" & [Seat Code] & "")
I would appreciate anything you could help me with!!!
Last edited: