I need to copy data from a username/password protected "homegrown" database (that can be a little slow) and paste it into an Access Table. I wrote a macro in our "homegrown" database that I linked to `. I'm able to do the following in Access:
Sub AutoExec()
AppActivate "Session 1"
delay (1)
SendKeys ("`")
delay (1)
DoCmd.OpenTable "QueueMonitor"
As a result, I have data pending on my clipboard that I need to paste to my table "QueueMonitor" AND format it from text to columns.
Do I need to go to Excel first and then upload it to Access?
Can I use the "split function" in Access instead?
The macro in our "homegrown" database works as long as I'm already signed in. How would you deal with the macro failing if you're not logged in? I could include the credentials in my code, but we change passwords frequently and we'll be sharing who is using the db and who may be logged in on a particular day.
Thanks for all suggestions!
Sub AutoExec()
AppActivate "Session 1"
delay (1)
SendKeys ("`")
delay (1)
DoCmd.OpenTable "QueueMonitor"
As a result, I have data pending on my clipboard that I need to paste to my table "QueueMonitor" AND format it from text to columns.
Do I need to go to Excel first and then upload it to Access?
Can I use the "split function" in Access instead?
The macro in our "homegrown" database works as long as I'm already signed in. How would you deal with the macro failing if you're not logged in? I could include the credentials in my code, but we change passwords frequently and we'll be sharing who is using the db and who may be logged in on a particular day.
Thanks for all suggestions!