I need to assign a new, sequential, Work Order number inside the WO# field of my Orders table. I also want to to have control over the number assignment using a double click button in the Order form. (Note: I'll use the same process to assign an Invoice number as well.
I want control over the numbers because not all entries will require a Work Order number. (By the way all records are tracked with an AutoNumber)
I have a table called SysCode # with a field called Last WO# which is used to track the last number I used. By activating the "Next Work Order #" button, I want the SysCode table field: Last WO# to updated by adding 1, and then insert the new number into WO# field in the Orders table.
Please help me figure this problem out
I want control over the numbers because not all entries will require a Work Order number. (By the way all records are tracked with an AutoNumber)
I have a table called SysCode # with a field called Last WO# which is used to track the last number I used. By activating the "Next Work Order #" button, I want the SysCode table field: Last WO# to updated by adding 1, and then insert the new number into WO# field in the Orders table.
Please help me figure this problem out
Comment