Odcl_GetExcelTabs

(From ODCL_LM file)

<< Click to Display Table of Contents >>

Navigation:  ObjectDCL > Free Extra Lisp function > External files >

Odcl_GetExcelTabs

(From ODCL_LM file)

Previous pageReturn to chapter overviewNext page

Odcl_GetExcelTabs

This function retrieve all Sheet name (Tabs) from a specific excel file.

Parameters

Excel file location

String specifying any path location.

 

Return Values

Returns the following according to the situation:

List as String of all tab in the specified excel file.

Nil if file is not valid.

 

Example:

Get Tab's List of a specific excel file

(Odcl_PathToList "c:\My folder\Myproject\Myfile.xls")

 

Result:

("Sheet1" "Sheet2" "Sheet3")

 

AutoLisp Syntax:

(Setq rValue (Odcl_GetExcelTabs FileLocation [as String]))