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
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
You need to put the full path to the Excel.exe file in along with the full
path to your spreadsheet. Leave the quotation marks where they are and that
will deal with any spaces in the path names.