I should probably know this, but I have a query that I'm opening with VBA:
the query is the following:
I simply need to order this column in ascending or descending order (doesn't matter) - however I want to edit the actual table with the ordered results and was not sure if there was simple way to save the results of the query to the table?
I don't have any primary keys
Thanks!
Code:
DoCmd.OpenQuery "SortTableClientCN_ASC", acViewNormal, acEdit
Code:
SELECT tblClientCN.ClientCN FROM tblClientCN ORDER BY tblClientCN.ClientCN;
I don't have any primary keys
Thanks!
Comment