Current balance for all customers

  • Thread starter Thread starter Peggy
  • Start date Start date
P

Peggy

My customers data are stored in various tables. One being
a payment table. This table has information like current
due, past due and balance. Of course, over time, each
customer has many, many entries. I want my query that I
use to print a report on a customer to only output their
CURRENT balance. I can get it to print every record for a
customer or I can get it to print the one customer who is
the most current. I seem to think this must be a criteria
for the field 'Date' in my QBE grid. I have been
struggling with this for literally months.
 
Peggy,

There would be a few approaches to this. Here's one which might most
readily make sense, which involves doing it in 2 steps. Adapt the below
according to your actual field names etc.
1. Identify the most recent record for each Customer, via a Totals
Query, as follows. Make a query based on your table, put the Customer
and Date fields into the QBE grid, select Totals from the View menu,
leave Group By in the Totals row of the Customer field, and put Max in
the Date field.
2. Make a new query, add your table, and also this first query. Join
them on both the Customer fields from both, and also on the
Date/MaxOfDate fields.
3. Put the Customer field and Balance field in the grid. Run the
query. Is this what you want?

Having said this, in reading between the lines of your post, it would
seem that your table design is not really according to database
principles. Really, a table should never have current due, past due and
balance fields. Much of this data is directly derivable from the
existing payments data, and as such should not be stored in the table.
This is making life unnecessarily difficult for you.

By the way, as an aside, the word Date has a special meaning (in Access,
it is classed as a 'reserved word'), and as such it should not be used
as the name of a field or control or database object.
 
Hello Steve
Thank you for your response. For the umteenth time I am
revising my tables. I am not only trying to get this thing
to work but I am trying to make the application very user
friendly as the user is more computer illiterate than me.
I am struggling, struggling, struggling with your
paragraph that begins 'Having said this,.....' I don't
know how to set this up if there is no table with current
due, past due and balance. I am completly missing the boat
about where this info will be for my report. In a query?
The user has to enter this data someplace. Where is it
stored?
I provide a service. I bill for it. I get a payment. I
have a balance. It starts all over. Why is this so hard
for me? Can you direct me to a model I can follow?
 
Peggy,

I can certainly sympathise with your struggle. The kind of thinking
required to work databases does not necessarily come naturally for the
normal person. Or most abnormal people for that matter.

I don't know of any model to direct you to, as such. But I will try to
outline a few ideas that will hopefully help you over the hump.

First idea, forget user-friendly when you are designing your tables.
That comes later. The table design is normally dictated by the real
structure of the real data. User-friendly doesn't come into it. Wait
until after you've got the tables right before even thinking about forms
and reports.

Second idea... this is one of the core principles of database design: If
a value can be derived/calculated from existing data, then
derive/calculate it, don't store it.

Apart from that, the key skill is recognising what are the actual data
elements you need, and what is the nature of the real-world
relationships between these elements.

This last point is what you are relating to when you say "I provide a
service. I bill for it. I get a payment. I have a balance." Fair
enough. So, one of the data elements is your Invoices. Your invoices
are issued to Clients, that is another data element. I'm just imagining
here, so correct me if I get any of this wrong as regards your real
operations. But assuming that any given Client can end up with more
than one Invoice, then you have a one-to-many relationship between
Clients and Invoices. Than automatically means that you need two
tables, with the primary key field of the Clients table represented by a
corresponding foreign key field in the Invoices table. Ok, then it gets
a bit fuzzy, depending on your actual practice. Is an invoice issued
for a single nominated amount, or can the invoice include more than one
chargeable item? If the first, then your Invoice table will have an
InvoiceAmount field. If the second, you will need another table for the
chargeable items, because there is a one-to-many relationship between
the Invoice element and the InvoiceItems element. And in this second
case, each Item has an Amount. Either way, you have all the information
you need in order to know how much money your client owes you. Then
they make Payments. Different people do this differently. Do you want
to simply credit a Payment received against the Client's record, or do
you want to tag the Payment against the Invoice that the client is
paying? If the first, you will need a ClientID foreign key field in the
Payments table. If the second, you will need an InvoiceID foreign key
field in the Payments table.

OK, now we can devise some forms where you can enter the Client
information, and the Invoice information, and the Payments received
information. Beautiful. Now you want data relating to Current Due,
Past Due, and Balance. You want this data for your purposes on forms
and reports. Have you already got this information? Yes! It is easily
obtained from the Invoice and Payments data. Do you need to enter this
data? No! Should you enter this data? No! These are
derived/calculated values, and should not be stored. All you need is a
couple of simple queries... the details of which will depend on your
actual business rules such as what defines Past Due, and on some of the
other factors that I mentioned above.
 
Thank you very much for your time. I have not had much
time to work on my database lately, however, I have
printed your response and it is very helpful. I am sure I
will get responses from you in the future and for that I
THANK YOU.
Peggy
 
Back
Top