Hey Y'all!
I've set up a sub as below:
Private Sub UpdateQRMMaster(Updatedate As Date)
DoCmd.RunSQL "INSERT INTO QRM_MASTER ( Product, UpdateDate, Mat_Date, Bal ) " & _
"SELECT temp.Product, " & Updatedate & " AS UpdateDate, temp.Mat_Date, temp.Bal " & _
"FROM temp;"
End Sub
Variable...