I have an Access project with a table consisting of customers. It’s a detail table so there are multiple line detail records. E.G
Customer Value 1 Value 2 Profit
Smith 10 20 10
Smith 30 50 20
Jones 15 25 10
Franks 30 55 25
Franks 10 10 0
Franks 20 5 -15
I want to write a view that basically tallies up the values for each customer so that the detail for each customer is on 1 line. For example,
Customer Value 1 Value 2 Profit
Smith 40 70 30
Jones 15 25 10
Franks 60 70 10
Any ideas would be appreciated!
Thanks
Andrew
Customer Value 1 Value 2 Profit
Smith 10 20 10
Smith 30 50 20
Jones 15 25 10
Franks 30 55 25
Franks 10 10 0
Franks 20 5 -15
I want to write a view that basically tallies up the values for each customer so that the detail for each customer is on 1 line. For example,
Customer Value 1 Value 2 Profit
Smith 40 70 30
Jones 15 25 10
Franks 60 70 10
Any ideas would be appreciated!
Thanks
Andrew