Getting details of calling cell inside formula function

Hi,

I have a registeredmathmethod function inside my spreadsheet implementation. I was wondering if there is a way I could get access or details like sheet,row and column of the cell from which the function is triggered. Let me know.

Thanks

Hi @rsant

You can use onCellChange event to save an active cell on a spreadsheet object and use it when you need.

example: Code Snippet

Thank you so much … I shall give it a try.