I have a table that I have appended new rows to via a loop and Recordset. So the Recordset contains the original data plus the new appended rows. What I am trying to do is SORT the new combined recordset (or table) that contains all of the new data in VBA. I have tried executing a Select Statement such as "Select * FROM Table ORDER By Field1, Field 2" but that doesn't work. I can't figure out the Recordset.Sort method. Any help or ideas are appreciated. I have scoured the internet but I can't find examples like what I am trying to do. Thank you for any assistance.