murray83
Games Collector
- Local time
- Today, 18:32
- Joined
- Mar 31, 2017
- Messages
- 826
rather simple one i think
so i have a main table which has all the records but thoose that be want to have a little visulation on when it was updated last and by whom, no names just windows logins useing the
so, when the record count has increased i would like the other table called ImportedBy which just has 2 headings ImportedBy which will hold the username and DtOfImport which will as says dispaly the date of the import/update
thing is im not sure how i would run an update query in this situation, i think it would have something to do with record counting, maybe something like this ( this is just of top of my head )
all and any help welcome, cheers
so i have a main table which has all the records but thoose that be want to have a little visulation on when it was updated last and by whom, no names just windows logins useing the
Code:
Me.txtUser.Value = Environ("username")
so, when the record count has increased i would like the other table called ImportedBy which just has 2 headings ImportedBy which will hold the username and DtOfImport which will as says dispaly the date of the import/update
thing is im not sure how i would run an update query in this situation, i think it would have something to do with record counting, maybe something like this ( this is just of top of my head )
Code:
current_rec_count = main.reccount if current_rec_count > then DO SQL Update to ImportedBy
all and any help welcome, cheers