I created the table like below
RegID - primary key
Confattid - foreign key
membchoiceid - foreign key and a multivalue field
tourId - foreign key and a multivalue field
and the rest similar like the query below:
all paid fields is in currency format.
I try to calculate all the fee fields to a new field name "total". Even I write the query, it doesn't show any errors, but it didn't show the result when I run the query.
my query:
SELECT ConferenceRegisterFee.RegID,
ConferenceRegisterFee.ConfStateRegFeePaid,
ConferenceRegisterFee.ConfSpouFeePaid,
ConferenceRegisterFee.ConfAttMembDuesPaid,
ConferenceRegisterFee.ConfLateFeePaid,
ConferenceRegisterFee.ConfRegFeePaid,
ConferenceRegisterFee.ConfAttMembDuesPaid,
[confstateregfeepaid]+[confspoufeepaid]+[confattmembduespaid]+[conflatefeepaid]+[confregfeepaid] AS total
FROM ConferenceRegisterFee
GROUP BY ConferenceRegisterFee.RegID,
ConferenceRegisterFee.ConfStateRegFeePaid,
ConferenceRegisterFee.ConfSpouFeePaid,
ConferenceRegisterFee.ConfAttMembDuesPaid,
ConferenceRegisterFee.ConfLateFeePaid,
ConferenceRegisterFee.ConfRegFeePaid,
ConferenceRegisterFee.ConfAttMembDuesPaid;
i'm new to access. Do you guys have any ideas to help me get through this?