M
Michelle
I need to open an Excel spreadsheet from a switchboard
button. Is there any way to do this?
Thanks,
Michelle
button. Is there any way to do this?
Thanks,
Michelle
Ken Snell said:Yes. You could use code similar to this in the OnClick event of the
switchboard button:
Private Sub cmdButtonName_Click()
Dim xlApplication As Object
Set xlApplication = CreateObject("Excel.Application")
xlApplication.Visible = True
End Sub