Address Function
|
Type a column number : |
2 |
||||||
|
Type a row number : |
3 |
||||||
|
Type a sheet name : |
Hello |
||||||
$B$3 |
=ADDRESS(F4,F3,1,TRUE) |
|||||||
B$3 |
=ADDRESS(F4,F3,2,TRUE) |
|||||||
$B3 |
=ADDRESS(F4,F3,3,TRUE) |
|||||||
B3 |
=ADDRESS(F4,F3,4,TRUE) |
|||||||
R3C2 |
=ADDRESS(F4,F3,1,FALSE) |
|||||||
R3C[2] |
=ADDRESS(F4,F3,2,FALSE) |
|||||||
R[3]C2 |
=ADDRESS(F4,F3,3,FALSE) |
|||||||
R[3]C[2] |
=ADDRESS(F4,F3,4,FALSE) |
|||||||
Hello!$B$3 |
=ADDRESS(F4,F3,1,TRUE,F5) |
|||||||
Hello!B$3 |
=ADDRESS(F4,F3,2,TRUE,F5) |
|||||||
Hello!$B3 |
=ADDRESS(F4,F3,3,TRUE,F5) |
|||||||
Hello!B3 |
=ADDRESS(F4,F3,4,TRUE,F5) |
|||||||
What Does It Do ? |
|
|
|
|
|
|
||
This function creates a cell |
||||||||
numbers given by the user. |
||||||||
This type of function is used |
||||||||
Syntax |
|
|
|
|
|
|
|
|
=ADDRESS(RowNumber,ColNumber,Absolute,A1orR1C1,SheetName) |
||||||||
The RowNumber is the normal row |
||||||||
The ColNumber is from 1 to 256, |
||||||||
The Absolute can be 1,2,3 or 4. |
||||||||
When 1 the reference will be in the form |
||||||||
When 2 the reference will be in the form |
||||||||
When 3 the reference will be in the form |
||||||||
When 4 the reference will be in the form |
||||||||
The A1orR1C1 is either TRUE of |
||||||||
When TRUE the reference will be in the form |
||||||||
When FALSE the reference will be in the |
||||||||
The SheetName is a piece of |
||||||||
The SheetName does not actually have to |