VBA or Queries
I think the point I was trying to get over was which is better - a query as in:
"Select A,B,C from Table_Z"
or a bit of vba as in:
Dim dbs as Database
Dim rst as RecordSet
Set dbs = Currentdb
Dim strSQL
strSQL = "Select A,B,C from Table_Z"
Set rst = dbs.OpenRecordSet(strSQL)...