After inserting records from Oracle into a table in Access I want a msgbox to display the count of records inserted. I thought this would work and it doesn't, what am I doing wrong?
daily_count = "SELECT Count(tblDaily.VENDOR_NAME) AS Count From tblDaily"
MsgBox "Daily table import has completed! & daily_count & ", vbOKOnly, "Import Status"
daily_count = "SELECT Count(tblDaily.VENDOR_NAME) AS Count From tblDaily"
MsgBox "Daily table import has completed! & daily_count & ", vbOKOnly, "Import Status"