I want to use the cell address (of the cell the formula is in) in a custom formula. e.g. In my sheet I have a formula in cell C7: =fSomeFormula() In my code I need something like
function fSomeFormula(){
var a = source.getA1Notation();
var b = source.getRow();
var c = source.getColumn();
return [a,b,c]; //returns ["C7",7,3]
};
Is this possible? Thanks in advance..