Yes I'm trying to keep intact sequence. The dates will be fine I think because each invoice needs to have a date when order took place.
ID
1 invoice 1 will have date 2008-01-01
2 invoice 2 will have date 2008-01-10
3 invoice 3 will have date 2008-01-15
5 invoice 4 will have date 2008-02-01 (because it was deleted)
6 invoice 5 will have date 2008-01-20 (because next order took place)
7 invoice 6 will have date 2008-01-30 (because next order took place)
8 invoice 7 will have date 2008-02-10
9 invoice 8 will have date 2008-02-15
When I have to make report on income for a month I pull a query based on invoice ID as a lookup in my purchased items table not by date.
2008-01 will be: invoices: 1;2;3;5;6;
2008-02 will be: invoices: 4;7;8;
If I wan't to look at invoices by dates I get:
2008-01 invoices: 1;2;3;5;6
2008-02 invoices: 4;7;8;
So I do not understand how I can have dates out of sequence
When I sell items in my purchased items page I by lookup assign each item an invoice ID using lookup from invoices table, I also assign summary ID from summary table.
Then When I need a report summary for income for a month I pull a query and enter "summary ID" then same "summary ID" for subreport for invoices.
I hate to do it twice but nobody have shown me how to make access format data in columns by VBA and not subreport. Subreport even request to enter criteria when you click print button even when it shows print preview with all the data. It's stupid for access to do it.
I do not use Double-Entry Accounting with debit and credit, I use simple Single-Entry Accounting.
Even if I do keep all invoices without deleting invoice numbers in the summary will be out of sequence because some unpaid, damaged etc, invoices will be excluded from list in summary for period pulled by query bu dates will be fine no?
Any suggestions are welcome.