I have a linked table, tblCustomers. For reporting purposes, I need to link a few customers together. (Where customers are linked, one customer acts as ‘parent’). Eg In the table below, cust a, cust b and cust c are linked, with ‘a’ acting as ‘parent
Custid CustName Sales
1 cust a 10
2 cust b 20
3 cust c 30
4 cust d 40
5 cust e 50
I would want a report to show :-
custName Sales
a 60 (ie 10+20+30)
d 40
e 50
Total 150
Can anyone advise a simple way to set up a tables/queries to generate the report
Thanks
Rob