What the correct syntax on this one? So far its not working at all. I'm trying to update a table (maintblBankruptcy) namefiels (DateESent) to now where DateESent is Null.
Dim SQL As String
SQL = "UPDATE maintblBankruptcy" & "SET maintblBankruptcy.DateESent = Now" & _
"WHERE [maintblBankruptcy.DateESent] is Null"
DoCmd.RunSQL SQL
Thanks for all your help. I'm still learning all this SQL statement.
Dim SQL As String
SQL = "UPDATE maintblBankruptcy" & "SET maintblBankruptcy.DateESent = Now" & _
"WHERE [maintblBankruptcy.DateESent] is Null"
DoCmd.RunSQL SQL
Thanks for all your help. I'm still learning all this SQL statement.