Buongiorno,
ho scritto un codice per l'inserimento di dati in una tabella con evento click da pulsante, ma non capisco perché i record vengono aggiunti in testa alla tabella e non in coda.
Il cosi è il seguente:
Dim strsql As String
If IsNull(Me.descr_camp) Or IsNull(Me.tipo_camp) Or IsNull(Me.tipo_an) Or IsNull(Me.ente_rich) Then
ins_incompleto = MsgBox("Uno o più campi risulatano vuoti!", vbExclamation)
Exit Sub
Else
strsql = "INSERT INTO prospetto" & _
"(Descrizione_Campione,Tipo_Campione,tipo_analisi,ente_richiedente) values ('" & descr_camp & "','" & tipo_camp & "','" & tipo_an & "','" & ente_rich & "') "
DoCmd.SetWarnings False
DoCmd.RunSQL strsql
DoCmd.SetWarnings True
End If
Me.Requery
Grazie.