cellAddress()
cellAddress(mixed $row, mixed $column, int $relativity = 1, bool $referenceStyle = true, string $sheetText = '') : string
CELL_ADDRESS.
Creates a cell address as text, given specified row and column numbers.
Excel Function: =ADDRESS(row, column, [relativity], [referenceStyle], [sheetText])
Parameters
mixed | $row | Row number to use in the cell reference |
mixed | $column | Column number to use in the cell reference |
int | $relativity | Flag indicating the type of reference to return 1 or omitted Absolute 2 Absolute row; relative column 3 Relative row; absolute column 4 Relative |
bool | $referenceStyle | A logical value that specifies the A1 or R1C1 reference style. TRUE or omitted CELL_ADDRESS returns an A1-style reference FALSE CELL_ADDRESS returns an R1C1-style reference |
string | $sheetText | Optional Name of worksheet to use |