f$Excel save workbook
f$Excel save workbook
Save the current workbook. If desired, another name can be entered as well. The name of the workbook is to be entered inclusive of path. If the workbook already exists, Excel asks if you want to overwrite the existing workbook.
Note that the character "\" must be entered twice ("\\") when entering the path in the file name.
Syntax: | Status = f$Excel('Workbook', 'save' [, Name] ) | ||
| Argument | Type | Meaning |
| 'Workbook' | String | Keyword |
| 'save' | String | Keyword |
| Name | String | Name of the Excel workbook. This argument is optional. |
Result: | Integer | 0: command executed successfully | |
Example: | Status = f$Excel('Workbook','open','c:\\temp\\test2.xls') | ||