T
TekWarrior
I have a DB that needs to import a csv.
The problem is that a date/time field in the csv sometimes has incorrectly
formatted dates. It has a "." instead of "/".
I figured I could import it as text, find and replace, then export/import
again to have it in the date/time format.
I have all the automation figured out except the find and replace part.
Any ideas?
BTW I tried an "IIf("*" & "." & "*"([Scan Time]),"*" & "/" & "*",[Scan
Time])" in an update query, it wouldn't except it. Then I modified it to
"IIf("*" & "." & "*","*" & "/" & "*",[Scan Time])" and it replaced the whole
field with "*/*". So I don't think an update query is the way to go.
The problem is that a date/time field in the csv sometimes has incorrectly
formatted dates. It has a "." instead of "/".
I figured I could import it as text, find and replace, then export/import
again to have it in the date/time format.
I have all the automation figured out except the find and replace part.
Any ideas?
BTW I tried an "IIf("*" & "." & "*"([Scan Time]),"*" & "/" & "*",[Scan
Time])" in an update query, it wouldn't except it. Then I modified it to
"IIf("*" & "." & "*","*" & "/" & "*",[Scan Time])" and it replaced the whole
field with "*/*". So I don't think an update query is the way to go.