I have a form that shows policy information for an insurance brokerage. When I enter the effective and expiration date of a policy, it calculates and updates a field called DaysInsured.
If a policy cancels, I enter a cancellation date. This updates another field called DaysInsuredBefo reCancellation.
On the After Update part of the cell called CancellationDat e, I want the database to look at another table, called ProRata, in the same database. The other table has two colums, the first is Days and the second is ProRataAmount.
I want the database to take the value in the DaysInsuredBefo reCancellation cell, look in the 2nd table (ProRata), find the record under Days equals the value in DaysInsuredBefo reCancellation and then take the amount in the ProRataAmount field and enter it into the original form/table in a cell called ProRataFactor.
I know I need Connection and Recordset to do this but cannot get it done right. Any ideas on how to write the code?
Windows XP
Access 2003
If a policy cancels, I enter a cancellation date. This updates another field called DaysInsuredBefo reCancellation.
On the After Update part of the cell called CancellationDat e, I want the database to look at another table, called ProRata, in the same database. The other table has two colums, the first is Days and the second is ProRataAmount.
I want the database to take the value in the DaysInsuredBefo reCancellation cell, look in the 2nd table (ProRata), find the record under Days equals the value in DaysInsuredBefo reCancellation and then take the amount in the ProRataAmount field and enter it into the original form/table in a cell called ProRataFactor.
I know I need Connection and Recordset to do this but cannot get it done right. Any ideas on how to write the code?
Windows XP
Access 2003
Comment