Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / General 2 / June 2007

Tip: Looking for answers? Try searching our database.

change the order of items on an invoice

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Christopher Glaeser - 19 Jun 2007 06:50 GMT
If an invoice has grociery items, then the order of the items on the invoice
is not important.  For example:

apples - $1.29
oranges - $1.15
pears - $1.17

However, some proposals/invoices have items that must be ordered, such as
construction invoices with tasks.  For example:

- acquire permit
- remove old roof
- apply underlayment
- apply shingles
- final building inspection

Now, suppose the customer reviews the proposal and decides they want gutters
added to the proposal.  The revised proposal is now:

- acquire permit
- remove old roof
- remove gutters
- apply underlayment
- apply shingles
- install seamless aluminum gutters and downspouts
- final building inspection

Most examples on creating invoices in Access do not allow items to be
inserted and rearranged.  Can you point me in the right direction, perhaps
with an example or suggestions on the table design.

Best,
Christopher
Wayne-I-M - 19 Jun 2007 07:59 GMT
Hi Chistropher

Is there a table where all the possible proccesses are stored.
So you may have
acquire permit
remove old roof
remove gutters
apply underlayment
apply shingles
install seamless aluminum gutters and downspouts
final building inspection

plus (maybe)
return to inspect work after 4 weeks
or
pre-site survey
etc
etc

Just a thought

Signature

Wayne
Manchester, England.

> If an invoice has grociery items, then the order of the items on the invoice
> is not important.  For example:
[quoted text clipped - 29 lines]
> Best,
> Christopher
Allen Browne - 19 Jun 2007 08:07 GMT
Presumably you have one table for the invoice header (shown on the main
form), and a related table for the invoice line items (shown in the
subform.) The related table will have fields like this:
   InvoiceDetailID    AutoNumber    primary key
   InvoiceID            Number           which invoice this line belongs
to.
   Quantity             Number
   Item                               probably relates to Product.ProductID
   PriceEach           Currency

If you want to define the order of the items, you need to add another field
to the InvoiceDetail table, e.g.:
   SortOrder           Number
The user can then enter whatever number they want, and you sort the items on
your invoice report by this field.

You don't have to make the SortOrder field uniquely indexed. Allowing
duplicates makes it easy to swap values. For example, if you want to swap
row 2 and 3, and they are uniquely indexed, you would need to change to 2 to
(say) 999, so you can change the 3 to 2 and then the 999 to 3. Similarly,
the numbers don't have to be sequential: they just sort in order.

The final piece of the puzzle is to automatically offer the next available
number at the point when the user starts entering a new row on the invoice.
Use the subform's BeforeInsert event procedure. Something like this (aircode
that needs changing to match your table and field names):

Private Sub Form_BeforeInsert(Cancel As Integer)
   With Me.Parent
       If .NewRecord Then
           Cancel = True
           MsgBox "Enter the invoice header in the main form first."
       Else
           Me.SortOrder = Nz(DMax("SortOrder", "InvoiceDetail", _
               "InvoiceID = " & !InvoiceID), 0) + 1
       End If
   End With
End Sub

Signature

Allen Browne - Microsoft MVP.  Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

> If an invoice has grociery items, then the order of the items on the
> invoice is not important.  For example:
[quoted text clipped - 29 lines]
> Best,
> Christopher
Pat Hartman (MVP) - 19 Jun 2007 14:09 GMT
I would make one enhancement to Allen's suggestion.  Instead of incrementing
by 1, increment by 10 or some other number to allow room for inserts without
having to renumber.

> Presumably you have one table for the invoice header (shown on the main
> form), and a related table for the invoice line items (shown in the
[quoted text clipped - 70 lines]
>> Best,
>> Christopher
Christopher Glaeser - 19 Jun 2007 18:21 GMT
> If you want to define the order of the items, you need to add another
> field to the InvoiceDetail table, e.g.:
>    SortOrder           Number
> The user can then enter whatever number they want, and you sort the items
> on your invoice report by this field.

Thanks, this is very helpful.

One more quick question.  I was thinking of adding Up/Down icons next to
each invoice item.  So, to insert a new item, the user would add an item,
and then click/click/click to move it into position.  The number of items is
usually between 1 and 8, so the number of moves would be modest.  The code
would resort after each click.  Mostly, I want to make sure I'm not
reinventing a feature or paradigm that is already available in Access.  I'm
guessing drag-and-drop, although user freindly, is more work if doable.

Best,
Christopher
Allen Browne - 20 Jun 2007 10:24 GMT
You can code that if you loop through the RecordsetClone of the records in
the form to renumber them, or exeute update query statements on the table.

I don't think there's any built-in functionality to do this for you, so it's
not trivial.

Signature

Allen Browne - Microsoft MVP.  Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

>> If you want to define the order of the items, you need to add another
>> field to the InvoiceDetail table, e.g.:
[quoted text clipped - 15 lines]
> Best,
> Christopher
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.