I have a page with an After Add event that adds records to two other tables. Each of these tables has its own ID field (autonumber). When I add a new record to Table_A, I need to first add a new record to Table_B with information from Table_A, then I need to add information to Table_C with the ID from Table_B and data from Table_A. Everything is working except the part that requires getting the "last record added ID" from Table_B.
What is the code for accomplishing this?