Just starting out trying to learn DAO but cant get the first step to even work
Dim dbcurr As DAO.Database
Set dbcurr = CurrentDb
Dim rscalls As Recordset
Set rscalls = dbcurr.OpenRecordset("Calls")
Debug.Print rscalls.Fields
I get a error on the set line... Something wrong with the table name????
Thanks///
Ask A Data Miner - 75,000+ Members
Follow On Twitter
Request More Information
What is the field name you are trying to print?Debug.Print rscalls.Fields["FieldName"]