I have to click on one prebuild tab(Pre- Linked of excel Files with the path with left Bar tab named(xyz)) inside MSAccess but I want to avoid Ui Automation , i want to run that tab directly from command prompt or by some other method. Is there any way or option anyone knows who have already deal with MsAccess before using UiPath.
I need to open the ms access database and then manually clicking on xyz tab which is pre linked with the excel file and after clicking new updated excel will be loaded to ms access data base, this manual process need to be automated by the bot and i need to avoid UiAutomation. Do u have any idea or any querry that we can run the ms acess tab from command prompt?
If its a prelinked tab then there would be a macro or a backend query that would be running…you can do that from
UiPath by accessing the msaccess as a db…so first try to get to know the process and query details…that way you need not open and click
In access db you can also record a macro or you can write a vbscipt to do the same task…or record macro and call it from vbscript and it can be inturn called from UiPath
Dim objAccess
Set objAccess = CreateObject("Access.Application")
objAccess.OpenCurrentDatabase "C:\YourDatabase.accdb"
objAccess.DoCmd.TransferSpreadsheet acImport, , "tablename", "C:\excel.xlsx", True
objAccess.Quit
Set objAccess = Nothing