I want to delete all the fields in a table except the fields F1,F2 and F3.
How can i do that?
I can delete for example the field F7 like that:
Set tdf = db.TableDefs("MyTable")
Set fld = tdf.Fields("F7")
tdf.Fields.Delete fld.Name
However,is it possible to declare also the fields that should not be deleted?