PxPlus User Forum

Main Board => Discussions => Programming => Topic started by: Thomas Bock on February 19, 2025, 02:36:23 AM

Title: translate Excel macro
Post by: Thomas Bock on February 19, 2025, 02:36:23 AM
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);
}