From Excel 2007, I'm connected to an Access database via ADODB.Connection. From here, I've retrieved some data from the database into a worksheet. Now I'd like to issue a command to the database to start one if its macros. This macro calls a function that is a VBA module. Can this be done? I know I can issue a DoCmd if I do a 'CreateObject("Access.Application") and a 'OpenCurrentDatabase', but I'm already connected.

Thanks.