Is there a way to access the coordinates of the cell (in A1 notation) of the cell that was passed to my function?
For example, if my function is
function displayA1Notation(myCell){ return myCell.getA1Notation(); }
and I will put the following in cell B4:
=displayA1Notation(C6)
I hope to see this:
C6
But I really see this:
Kansas
("Kansas" is the actual value of cell C6)
I know this seems easy ... I was just stuck trying to get it to work.
Thanks ~!
source share