I am using office JS to create a Excel Web Addin. I want to get the address of a cell in $A$1 form.
Right now I am using the address property of Excel.Range which gives the address like Sheet1!A1. How do I fetch it as Sheet1!$A$1?
Following is the code I use to load address property.
var activeCell = context.workbook.getActiveCell();
activeCell.load("address");