Macro to change fieldtype

J

Jan van Hooff

How can I change the type of a field from text to date/time with a macro?
 
S

Steve Schapel

Jan,

Use a RunSQL action in your macro. In the SQL Statement argument, put
the equivalent of...
ALTER TABLE NameOfYourTable ALTER COLUMN NameOfField DATE
 
Top