|
|
|
|
|
xlsUnmergeCell (Function) In french: xlsDéfusionneCellule Unmerges a range of cells. The range of cells is identified by one of its cells. MyXLSDocument is xlsDocument
xlsUnmergeCell(MyXLSDocument, "B2")
Syntax
Unmerging a range of cells identified by the row and column of a given cell Hide the details
<Result> = xlsUnmergeCell(<Excel document> , <Cell row> , <Cell column>)
<Result>: Boolean - True if the range of cells was unmerged.
- False otherwise.
<Excel document>: xlsDocument variable Name of the variable of type xlsDocument to be used. <Cell row>: Integer Row number of one of the cells in the range of cells to unmerge. <Cell column>: Integer Column number of one of the cells in the range of cells to unmerge.
Unmerging a range of cells identified by the reference of a given cell Hide the details
<Result> = xlsUnmergeCell(<Excel document> , <Cell>)
<Result>: Boolean - True if the range of cells was unmerged.
- False otherwise.
<Excel document>: xlsDocument variable Name of the variable of type xlsDocument to be used. <Cell>: Character string Cell in the range of cells to unmerge. This parameter has the following syntax: <Column letter><Row number>. For example: "A32".
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|