A
Air-ron
Okay, I had posted before under the title "Multiple Record Form", but there
were some troubles with the underlying data structure.
Now I have cleared up my confusion about how to attack different parts of
the problem, and am left with only one unresolved issue so far as data entry
goes -
I need to create a form to enter the data!
Here's what I have as for structure:
tblCounts
PK GDay - the gaming day (date)
PK CTime - the time the count data was taken
PK ZoneID - the zone where the data was taken
PK VendorID - the vendor(machine type) we're counting the usage of
Headcount - the customer count for the zone, time, and vendor in question.
tblVendors
PK VendorID - 1toM related both to tblCounts and tblVendorZones
VendorName - text string
tblZones
PK ZoneID - autonumber, 1toM related both to tblCounts and tblVendorZones
ZoneName - Text string
FloorID - FKfrom casinofloors table
tblVendorZones - Junction table for vendors and zones
ZoneID - FK from tblZones
VendorID - FK from tblVendors
tblTimes
PK Ctime - data collection times
Shift - FK from tblShifts
tblCasinoFloors
PK FloorID - autonumber
FloorName - Text String.
thus, each shift counts 4 times over 8 hours, each floor is broken down into
zones, and each zone can have machines from any number of vendors.
The most used and updated data will be in tblCounts. (I have a form already
to adjust the casino layout as far as zones, zone names, and the vendors in
the zones)
What I would like is a form where the shift manager can, at the end of
his/her shift, input the counts taken by the underlings(like me) all at once.
I have a form set up that takes the date, shift, and floor; and runs a
couple of queries to make sure there are records in the table that correspond
to the all possible time, zone and vendor combinations (as defined by the
relationships and junction tables).
What would be ideal at this point would be a form based on a crosstab query,
so the shift managers could then input their data in a spreadsheet-styled
form.
Alas, I found that this was impossible without several more weeks of
seat-of-the-pants coding instruction.
What's my best alternative?
The easier I can make this(these) form(s) to use, the easier my life will
be, as I'm leaving the customer service department very soon, and that
departure may depend on this DB...
I appreciate all the help I can get!!!
Aaron
were some troubles with the underlying data structure.
Now I have cleared up my confusion about how to attack different parts of
the problem, and am left with only one unresolved issue so far as data entry
goes -
I need to create a form to enter the data!
Here's what I have as for structure:
tblCounts
PK GDay - the gaming day (date)
PK CTime - the time the count data was taken
PK ZoneID - the zone where the data was taken
PK VendorID - the vendor(machine type) we're counting the usage of
Headcount - the customer count for the zone, time, and vendor in question.
tblVendors
PK VendorID - 1toM related both to tblCounts and tblVendorZones
VendorName - text string
tblZones
PK ZoneID - autonumber, 1toM related both to tblCounts and tblVendorZones
ZoneName - Text string
FloorID - FKfrom casinofloors table
tblVendorZones - Junction table for vendors and zones
ZoneID - FK from tblZones
VendorID - FK from tblVendors
tblTimes
PK Ctime - data collection times
Shift - FK from tblShifts
tblCasinoFloors
PK FloorID - autonumber
FloorName - Text String.
thus, each shift counts 4 times over 8 hours, each floor is broken down into
zones, and each zone can have machines from any number of vendors.
The most used and updated data will be in tblCounts. (I have a form already
to adjust the casino layout as far as zones, zone names, and the vendors in
the zones)
What I would like is a form where the shift manager can, at the end of
his/her shift, input the counts taken by the underlings(like me) all at once.
I have a form set up that takes the date, shift, and floor; and runs a
couple of queries to make sure there are records in the table that correspond
to the all possible time, zone and vendor combinations (as defined by the
relationships and junction tables).
What would be ideal at this point would be a form based on a crosstab query,
so the shift managers could then input their data in a spreadsheet-styled
form.
Alas, I found that this was impossible without several more weeks of
seat-of-the-pants coding instruction.
What's my best alternative?
The easier I can make this(these) form(s) to use, the easier my life will
be, as I'm leaving the customer service department very soon, and that
departure may depend on this DB...
I appreciate all the help I can get!!!
Aaron