Hi,
I'm trying to add more than one record at a time to a table based upon the Case selected so far I have:
Which adds one record. How would I go about adding more than one record with different values for the scheduledate and step fields for each Case selected.
Thanks so much for your help.
Sydney
I'm trying to add more than one record at a time to a table based upon the Case selected so far I have:
Code:
Select Case cboLitType
Case "bka"
Set MyDB = CurrentDb
Set MyTable = MyDB.OpenRecordset("tblLoanSteps")
MyTable.AddNew: MyTable("litigationID") = Forms!frmLitigationEntry!txtLitigationID
MyTable("ScheduleDate") = Date: MyTable("Steps") = "1"
MyTable.Update
End Select
Thanks so much for your help.
Sydney