EXCEL SELECT SHEET: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
Mikeo (talk | contribs)
No edit summary
 
Line 4: Line 4:
|description=:Delect the sheet inside excel for use in the macro.
|description=:Delect the sheet inside excel for use in the macro.


|param1=<sheet name>|param1_desc={{sheet name}}
|param1=<sheet name>|param1_desc=Sheet name as a text string
}}
}}


===Example===
===Example===
:EXCEL_SELECT_SHEET "tool"
:EXCEL_SELECT_SHEET "Tools"
<br>
:a$ = "MySheet"
:EXCEL_SELECT_SHEET a$


[[Category:Excel]]
[[Category:Excel]]

Latest revision as of 17:33, 12 January 2011

Up

Command

EXCEL_SELECT_SHEET <sheet name>


Delect the sheet inside excel for use in the macro.

Parameters

<sheet name>
Sheet name as a text string

Example

EXCEL_SELECT_SHEET "Tools"


a$ = "MySheet"
EXCEL_SELECT_SHEET a$