My question concerns two tables, jobreport_tbl and stock_tbl:
jobreport_tbl:
groupID (Autonumber)
jobdate
client
technician
...
stock_tbl:
stockID (Autonumber)
stockGroup
productRef
qty
Now, every time I enter a record in jobreport_tbl, I want to create a record in stock_tbl with stockGroup equaling groupID.
I am trying to do this using table macros. I'm thinking the one I want is After Insert macro, createRecord and then setfield macro, but so far it doesn't work as I intended.
THX