Syntax
| SQL.OpenExcelDocument FileName
| ||||
---|---|---|---|---|---|
Description
| Automatically launches Microsoft Excel and opens the specified worksheet in it.
If it is a document archived in the digital archive, the document is automatically retrieved from this archive.
Note: Requires an installed version of Micorosoft Excel.
| ||||
See Also
| |||||
Example
| Sub Main() Dim sFile As String sFile = InputBox$("Excel file:") SQL.OpenExcelDocument sFile End Sub | ||||