Reputation: 162
I need the value of cell addresses to implement another solution but I cannot get the correct address. Anyone knows how to fix and get the actual cell address of cells located close to each other.
Upvotes: 1
Views: 119
Reputation: 50143
Use the reference
argument:
=CELL("address",L54)
From the docs:
reference: The cell that you want information about.
Optional
If omitted, the information specified in the info_type argument is returned for cell selected at the time of calculation. If the reference argument is a range of cells, the CELL function returns the information for active cell in the selected range.
Upvotes: 2