Difference between revisions of "EXCEL GET CELL"
From Macros Wiki
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{Command|syntax=EXCEL_GET_CELL <row>, <col>, <nowiki><var name></nowiki> | {{Command|syntax=EXCEL_GET_CELL <row>, <col>, <nowiki><var name></nowiki> | ||
− | |description=:Get the | + | |description=:Get the contents of a cell. |
|param1=<row>|param1_desc={{row}} | |param1=<row>|param1_desc={{row}} | ||
|param2=<col>|param2_desc={{col}} | |param2=<col>|param2_desc={{col}} | ||
− | |param3=<nowiki><var name></nowiki>|param3_desc={{ | + | |param3=<nowiki><var name></nowiki>|param3_desc={{parameter_variable_string_name}} the cell contents |
}} | }} | ||
===Example=== | ===Example=== | ||
− | :EXCEL_GET_CELL 3, 6, | + | :EXCEL_GET_CELL 3, 6, a$ |
[[Category:Excel]] | [[Category:Excel]] |
Latest revision as of 12:46, 12 January 2011
Command
- EXCEL_GET_CELL <row>, <col>, <var name>
- Get the contents of a cell.
Parameters
- <row>
- Row number.
- <col>
- Column number.
- <var name>
- Name of string variable to be set to the cell contents
Example
- EXCEL_GET_CELL 3, 6, a$