translate Excel macro

Started by Thomas Bock, February 19, 2025, 02:36:23 AM

Previous topic - Next topic

Thomas Bock

How can I translate this Excel macro to PxPlus?

function main(workbook: ExcelScript.Workbook) {
let sheet1 = workbook.getWorksheet("sheet1");
// Add a new table at range A1:L10 on sheet1
let newTable = workbook.addTable(sheet1.getRange("A1:L10"), true);
}