I am getting a data type conversion error. WHY?
strFld is already of data type DateTime.
strFld = "MEMBERCALLEDDTE"
Set rst = db2.OpenRecordset("tblUNION_UserCallResults")
Do While Not rst.EOF
rst.Edit
rst(strFld) = FormatDateTime(rst(strFld), vbShortDate)
rst.Update
rst.MoveNext
Loop
rst.Close
Set rst = Nothing
strFld is already of data type DateTime.
strFld = "MEMBERCALLEDDTE"
Set rst = db2.OpenRecordset("tblUNION_UserCallResults")
Do While Not rst.EOF
rst.Edit
rst(strFld) = FormatDateTime(rst(strFld), vbShortDate)
rst.Update
rst.MoveNext
Loop
rst.Close
Set rst = Nothing