L
lumpy
Hi I'm pretty new to Access but have done a bit of macro programming in Excel, autocad lisp and a specialized toolscripting language for CNC machines
I've got a pretty simple database with an individual table (for now) that I need to manage a list of timbers. The database gets populated by importing a excel spreadsheet which itself is created by exporting from an autocad model. The Table has the following fields
ID (this number identifies which timber it is in the autocad model
fT (Finished Thickness- for a 2x8 this would be 1.5
fw (Finished Width- for a 2x8 this would be 7.5
L (Length
Specie
Grad
Cut
One of my first hurdles is to create a list of timbers to order from the mill. Since the mill does not cut any timbers less than 10' long, I need to combine any 2 or 3 individual shorter pieces into a single longer piece while still keeping track of my ID's of the smaller pieces
My idea of the most convienent method from a user standpoint is to have a query or filter return a table of the pieces that are less than 10' in length. A macro would then prompt the user to select 2 records (pieces) they would like to combine. After the user selects the two pieces, the macro would create a new record that added the L values, concatenate the ID values and delete the original 2 records
Any ideas on how this would be best accomplished?
I've got a pretty simple database with an individual table (for now) that I need to manage a list of timbers. The database gets populated by importing a excel spreadsheet which itself is created by exporting from an autocad model. The Table has the following fields
ID (this number identifies which timber it is in the autocad model
fT (Finished Thickness- for a 2x8 this would be 1.5
fw (Finished Width- for a 2x8 this would be 7.5
L (Length
Specie
Grad
Cut
One of my first hurdles is to create a list of timbers to order from the mill. Since the mill does not cut any timbers less than 10' long, I need to combine any 2 or 3 individual shorter pieces into a single longer piece while still keeping track of my ID's of the smaller pieces
My idea of the most convienent method from a user standpoint is to have a query or filter return a table of the pieces that are less than 10' in length. A macro would then prompt the user to select 2 records (pieces) they would like to combine. After the user selects the two pieces, the macro would create a new record that added the L values, concatenate the ID values and delete the original 2 records
Any ideas on how this would be best accomplished?