SOLVED

How to convert a cell address to text?

Copper Contributor

Each cell has an address, such as DA2 [Col DA, row 2].  How can I convert this to a text, such as "DA2", that I can then put into another cell [preceded with a ' to keep it a text] to indicate the location of the first cell?

3 Replies
best response confirmed by Jay_Warner (Copper Contributor)
Solution

@Jay_Warner 

As variant

=ADDRESS(ROW(DA2),COLUMN(DA2),1,1)

Works!  Many thanks.

@Sergei Baklan 

@Jay_Warner , you are welcome

1 best response

Accepted Solutions
best response confirmed by Jay_Warner (Copper Contributor)
Solution

@Jay_Warner 

As variant

=ADDRESS(ROW(DA2),COLUMN(DA2),1,1)

View solution in original post