ADO data control name is adoNum
I basically am trying to figure out which statement will multiply the contents of the fldNum1 field by the number 3 and then store the result in the fldTot field.
adoNum.Fields(fldTot) = adoNum.Fields(fldNum1) * 3
adoNum.Fields("fldTot") = adoNum.Fields("fldNum1") * 3
adoNum.Recordset.Fields(fldTot) = adoNum.Recordset.Fields(fldNum1) *
3
adoNum.Recordset.Fields("fldTot") = adoNum.Recordset.Fields("fldNum1") * 3


