The Chart of Accounts is represented in the Account table. Account names can be changed like this:
Update Account Set Name = 'Toms Retained Earnings' where Name = 'Retained Earnings'
or the active status like this:
Update Account Set IsActive = 1 where Name = 'Retained Earnings'
or in MS Access, you would do:
DoCmd.RunSQL "Update Account Set IsActive = 1 where Name = 'Retained Earnings' "
|