Hello, I'm trying to use DAO to update within the table properties, the description. This is what I have so far. I haven't tried to run any of this code.
Function ModifyTablePropertyDescription(strArchiveTable As String, strTableDescription As String)
Dim db As DAO.Database
Dim tdf As DAO.TableDef
Dim fld As DAO.Properties
Set db = CurrentDb()
Set tdf = db.TableDefs(strArchivetable)
Set fld = Nothing
Set tdf = Nothing
Set db = Nothing
End Function