我有几个“命名”范围。我正在尝试获取范围的名称,而不是值。
我尝试了以下方法:
$("#get-values").click(getValues);
async function getValues() {
try {
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("FormName");
const valm = sheet.names;
valm.load("names");
await context.sync();
console.log(JSON.stringify(valm.names));
});
} catch (error) {
OfficeHelpers.UI.notify(error);
OfficeHelpers.Utilities.log(error);
}
}
我不知道如何从上面的脚本中获取名称