I have a table with a lot of information and an empty one.
I need to make an INSERT on this empty table with just one information from the other table, but SELECT must be random.
I'm using the following line in VBA:
db.Execute "INSERT INTO tbl_Sorteio SELECT TOP 1 RE, Name_Employee, Case_Number, [Date], [Time], Supervisor, Comment, Client ORDER BY Rnd(Case_Number)"
But I got the following error message:
Remembering, I'm using Access 2013.