G
Guest
In tbl1 I have two fields (fldID and fldQty). With the OnClick event
cmdButton on frm1 I would like to loop through all the records in tbl1 and
update fldQty based on the result of the following function.
Select Case ID
Case 1
fldQty = 1 * fldID
Case 2
fldQty = 3 * fldID
End Select
I would greatly appreciate what help might be offered.
cmdButton on frm1 I would like to loop through all the records in tbl1 and
update fldQty based on the result of the following function.
Select Case ID
Case 1
fldQty = 1 * fldID
Case 2
fldQty = 3 * fldID
End Select
I would greatly appreciate what help might be offered.