Creating a clickable button

S

S Davis

Hey all,

I have written a macro that does the following:

~~~~~~~~~~~~~~~~~~~~~~~~
Sub ButtonRefreshTest()

Dim mdb_Obj As Object
Set mdb_Obj = CreateObject("Access.Application")
Dim app As Application
Set app = Application
mdb_Obj.Visible = True

mdb_Obj.OpenCurrentDatabase ("\\~edit~.mdb")
mdb_Obj.DoCmd.RunMacro "Make Union176 Table"
MsgBox "Updated DataBase with Latest Data! Check 'SummarySheet'"
mdb_Obj.Quit

Range("SummarySheet176").QueryTable.Refresh BackgroundQuery:=False
app.Application.Calculate
MsgBox "Updated Successfully!"

End Sub
~~~~~~~~~~~~~~~~~~~~~~
This works fine for me, but I have to run it from within VB. How can I
make this into a clickable button within excel?
 
G

Guest

Make a note of the name of the macro, then go to the Excel worksheet, draw a
button, right-click the button and select assign macro, and click on the
macro name. Then click OK.
 
G

Guest

Make a note of the name of the macro, then go to the Excel worksheet, draw a
button, right-click the button and select assign macro, and click on the
macro name. Then click OK.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top