473,402 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

Keeping a record of repeating invoices

tom
Hi,

I have built an Access DB for a child care business. Family table
stores the Family info. Room the different room names, capacity etc.
Price stores the various price codes and amounts. The Child table
records the childs DOB, start date, end date etc. etc. and of course
to which family he/she belongs, which room and which price category.
There is then a query and report that produces the invoices for each
child for a given month (month inputted). Of course invoices are
produced for only the children currently attending (start date < today
end date.


Now the problem I have is that I would like to record these invoices.
So that if needed I could reprint one. Also I would like to see all
invoices sent to a particular family, all invoices for a particular
month etc.I would also like to be able to indicate that a family has
paid and the payment date. However as it stands this info is not in a
table that I can query, it is the output of a query/report. I'm sure I
am doing something fundamentally wrong but cannot think what. As you
may have guessed I am very green to DB design.

Any help would be greatly appreciated

Thanks - Tom
Nov 12 '05 #1
2 2464
Maybe all you need is a table where you record identifying information on
the invoices created, then the ability to create another one that can
quickly be determined to be "DUPLICATE" or "REINVOICE"?

"tom" <to***@ses-astra.com> wrote in message
news:ae*************************@posting.google.co m...
Hi,

I have built an Access DB for a child care business. Family table
stores the Family info. Room the different room names, capacity etc.
Price stores the various price codes and amounts. The Child table
records the childs DOB, start date, end date etc. etc. and of course
to which family he/she belongs, which room and which price category.
There is then a query and report that produces the invoices for each
child for a given month (month inputted). Of course invoices are
produced for only the children currently attending (start date < today
end date.


Now the problem I have is that I would like to record these invoices.
So that if needed I could reprint one. Also I would like to see all
invoices sent to a particular family, all invoices for a particular
month etc.I would also like to be able to indicate that a family has
paid and the payment date. However as it stands this info is not in a
table that I can query, it is the output of a query/report. I'm sure I
am doing something fundamentally wrong but cannot think what. As you
may have guessed I am very green to DB design.

Any help would be greatly appreciated

Thanks - Tom

Nov 12 '05 #2
Dear Tom:

I can understand your frustration. First off, since you are just
starting, have you taken some classes or read some good books on
database design and/or Access development? I think you need to do this
first before you get more frustrated and just throw everything away. Or
worse, your system doesn't properly records an invoice and you loose
money! But since you asked the question, here are some thoughts.

If you want to print "historical" or "closed" invoices (closed = invoice
has been payed), you need a "Receivables Register". This would be a form
that lists all the invoices that you have not recieved payment for. You
would have a field to record the payment received agains the open
invoice. Very similar to the check register you have for your checking
account. Once invoices are closed, you now have the information for
reports that tell you who has payed and when they payed.

If you need to print "closed" invoices, it sounds like you already have
the data to do that. Remember, you never store the output of a report
because you can always recreate it from your data. All you need is the
mechanism to locate the old invoice and execute your report against this
record source.

You didn't mention if you were using VBA or macros to develop your
application. I think VBA is the way to go, but it is an area where the
developer will need to have some knowledge of programming concepts.

I just completed a large application that creates invoices, prints
invoices and shipping slips, you can brows all invoices and reprint
them. You can locate invoices by customer or invoice number, etc. Also,
there is a receivables register to record payments.

I could let you see the application, but I think it would just add more
to the confusion. I think what you need to do first is make sure that
your table design is sound. This is your foundation. Then, you can
build on this foundation gradually. Or, if this is too much, you could
just buy an application and forget about this nonsense and concentrate
on your primary business!

Good Luck!
Greg Fierro
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: David B | last post by:
An app I am working on produces invoices between two dates, either for a selected customer or all, with transactions in the date range. I need to record that an invoice has been produced and,...
6
by: Mike Conklin | last post by:
This one really has me going. Probably something silly. I'm using dcount for a report to determine the number of different types of tests proctored in a semester. My report is based on a...
2
by: lcrunicorn | last post by:
I am trying to figure out the best way to get an alert in my Access 2002 Database when an invoice that is for an active vendor has not been received. Ex. I receive invoices on a daily bases. If...
27
by: Kim Webb | last post by:
I have a field on a form for project number. I basically want it to be the next available number (ie 06010 then 06011 etc). In the form I create a text box and under control source I put: =!=...
2
by: jburris | last post by:
In my current database, I have a single table which contains order information such as product, unit price and payment. The payment for each product is entered in and subtotals and totals are...
2
by: S. Kitty | last post by:
Hi everyone! I have a bit of a weird problem right now with the addition of a record in a subform. The database is supposed to keep track of a list of projects for a consulting company. ...
6
by: AppDev63 | last post by:
I've been struggling with a form. On the left side of the form I've got data from a table of invoices, and on the right side I've got a combo box with data from a table of payments. The user scrolls...
6
by: ConfusedMay | last post by:
Hi I need some helps in calculating the invoice amount in access 2003 report. Basically I have an access report that shows invoice#, invoice amount, payment amount, and payment date. The problem is...
1
by: farisallil | last post by:
Hi I have a form called Invoice that has a subform called Invoice_datasheet. The subform has the field Customer as the child link and Customer_Name in the Invoice form (The master) as the master...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.