Do you want to: Suggest a feature / Report a bug / Ask a how-to question
For feature suggestions, describe the result you would like to achieve in detail:
For bug reports, provide the steps to reproduce and if possible a minimal demo of the problem:
Document Server version: 7.3
Installation method:
OS:
Browser version:
- Open Desktop Editors,
- Create a new xlsx file
- Select the first cell
- Run macros
Then the alias took effect, but after opening the file the second time, the alias disappeared
var oWorksheet = Api.GetActiveSheet();
var activeCell = oWorksheet.ActiveCell;
const cellAddress = activeCell.GetAddress(true, true, true, true);
const nameAddress = cellAddress.split("]")[1];
Api.AddDefName("_test_id", nameAddress);