Hi!
Hopefully quite an easy one, but one that will be a bit of a disaster if i do it wrong! I have a database that is already in use (and therefore has a lot of data in) We are expanding a certain section of it and i need to copy and paste append some data into a table which already has 500+ records in it. I obviously dont want to overwrite any of the existing data, so would i say go to last record, add new record or what?
So far I have:
DoCmd.OpenTable "TblQuantities"
DoCmd.GoToRecord , , acLast
DoCmd.RunCommand acCmdPasteAppend
DoCmd.Close acTable, "TblQuantities"
but i thought i would run it past you guys before i try it out as i was worried it might overwrite the last record.
If you could put my mind at ease it would be greatly appreciated!!
Thank you!
Hopefully quite an easy one, but one that will be a bit of a disaster if i do it wrong! I have a database that is already in use (and therefore has a lot of data in) We are expanding a certain section of it and i need to copy and paste append some data into a table which already has 500+ records in it. I obviously dont want to overwrite any of the existing data, so would i say go to last record, add new record or what?
So far I have:
DoCmd.OpenTable "TblQuantities"
DoCmd.GoToRecord , , acLast
DoCmd.RunCommand acCmdPasteAppend
DoCmd.Close acTable, "TblQuantities"
but i thought i would run it past you guys before i try it out as i was worried it might overwrite the last record.
If you could put my mind at ease it would be greatly appreciated!!
Thank you!