I am trying to develop a form for the calibration of balances. Each balance can be calibrated using one or more weights. The table is:
tbl_Calib
CalibID (Autonumber)
CalibDate (date)
AnalystID (number)
BalanceID (number)
MassID (number)
MeasuredMass (number)
I have a form that has the following controls (The ID field is not visible):
txt_CalibDate - entering the date
cbo_Analyst - Name of analyst performing the measurments
cbo_Balance - Which balance is being calibrated
cbo_Mass - What mass to use for calibration. You can use one or more masses depending on the balance.
txt_MeasuredMass - ACtual measurement
If I enter the calibration amounts one by one, this works great. However, since the values in txt_CalibDate, cbo_Analyst and cbo_Balance do not change, is there a way to save these values in the table but have different values for the MassID and MeasuredMass? For example, curently if Balance1 needs to be calibrated for 1, 2 and 5 grams, the analyst will have to select enter the date, select his name, balance ID three times, with each incidence having a different MassiD and MeasuredMass. I just want to save the analyst some time by only entering values in txt_CalibDate, cbo_Analyst and cbo_Balance once, instead of doing however many times that the balance needs to be calibrated.
tbl_Calib
CalibID (Autonumber)
CalibDate (date)
AnalystID (number)
BalanceID (number)
MassID (number)
MeasuredMass (number)
I have a form that has the following controls (The ID field is not visible):
txt_CalibDate - entering the date
cbo_Analyst - Name of analyst performing the measurments
cbo_Balance - Which balance is being calibrated
cbo_Mass - What mass to use for calibration. You can use one or more masses depending on the balance.
txt_MeasuredMass - ACtual measurement
If I enter the calibration amounts one by one, this works great. However, since the values in txt_CalibDate, cbo_Analyst and cbo_Balance do not change, is there a way to save these values in the table but have different values for the MassID and MeasuredMass? For example, curently if Balance1 needs to be calibrated for 1, 2 and 5 grams, the analyst will have to select enter the date, select his name, balance ID three times, with each incidence having a different MassiD and MeasuredMass. I just want to save the analyst some time by only entering values in txt_CalibDate, cbo_Analyst and cbo_Balance once, instead of doing however many times that the balance needs to be calibrated.