¿Como inserto una fecha null?
CurrentDb.Execute "INSERT INTO OrdenServicio(IdOrden,FechaInicio,FechaFin,Proveedor,Trabajador,Descripcion) VALUES ( " & Me.Folio & " , #" _ & Format(Me.FechaInicio, "MM/dd/yyyy hh:mm:ss ") & "# , #" & IIf(IsNull(Me.FechaFin), "NULL", Format(Me.FechaFin, "MM/dd/yyyy hh:mm:ss")) & "# , '" & Me.CmbProveedores & "' , '" _ & Me.Ayudante & "', " & IIf(IsNull(Me.Descripcion), "NULL", "'" & Me. Descripcion & "'") & ")", dbFailOnError
Hola.. Este es mi insert lo que pasa que no se como insertar un "NULL" si mi campo de fecha esta vacio.
#" & IIf(IsNull(Me.FechaFin), "NULL", Format(Me.FechaFin, "MM/dd/yyyy hh:mm:ss")) & "#
Es la linea anterior me marca error sintaxis en donde Inserto "NULL" si la le fecha esta vacia("NULL")
Lo demas funciona bien
3 Respuestas
Respuesta de Julián González Cabarcos
1
Respuesta de Jacinto Trillo Jareño
1
Respuesta de fichu
1