The RODBC documentation suggests it is possible, but I am not sure how to read data from a Microsoft Access (the new .accdb
format) file with this package into
To import a post-2007 Microsoft Access file (.accdb) into R, you can use the RODBC
package.
For an .accdb file called "foo.accdb" with the following tables, "bar" and "bin", stored on the desktop of John Doe's computer:
library(RODBC) #loads the RODBC package
dta <- odbcConnectAccess2007("C:/Users/JohnDoe/Desktop/foo.accdb") #specifies the file path
df1 <- sqlFetch(dta, "bar") #loads the table called 'bar' in the original Access file
df2 <- sqlFetch(dta, "bin") #loads the table called 'bin' in the original Access file