![]() |
Leading the way in Microsoft Office Development |
| Home | | | Excel | | | Word | | | PowerPoint | | | Consultancy | | | Feedback | | | Contact |
| Microsoft Excel > Functions > Lookup and Reference > ADDRESS |
ADDRESS(row_num, column_num [,abs_num] [,a1] [,sheet_name]) |
| Returns the cell reference given a row and column number. |
| row_num | The row number to use in the cell reference between 1 and 65,536. | |
| column_num | The column number to use in the cell reference between 1 and 256. | |
| abs_num | The number indicating the type of reference to return: 1 = absolute ($A$1) 2 = absolute row/relative column (A$1) 3 = relative row/absolute column ($A1) 4 = relative (A1) | |
| a1 | True of False to specify either the A1 or R1C1 reference style. | |
| sheet_name | The name of the worksheet to be used as the external reference. |
| REMARKS |
| If "row_num" < 1, then #VALUE! is returned. | ||
| If "col_num" < 1, then #VALUE! is returned. | ||
| If "abs_num" is left blank, then 1 is used. | ||
| If "a1" = True then the A1 style reference is returned. | ||
| If "a1" = False then the R1C1 style reference is returned. | ||
| If "a1" is left blank, then True is used. | ||
| If "sheet_name" is left blank, then the cell reference will refer to the active sheet. | ||
| The "sheet_name" does not have to be the name of a worksheet that actually exists. | ||
| The "row_num" can be a cell reference that evaluates to a number. | ||
| The "col_num" can be a cell reference that evaluates to a number. |
| EXAMPLES |
|
| Functions - A | Index - A | Office Online |
| Copyright © 2004-2007 Better Solutions Limited. All Rights Reserved. | Top |