我需要使用电源自动化 + Office 脚本从一个 Excel 工作表中复制数据并粘贴(仅限值)到另一个工作表上
我开始使用下面链接中的答案创建一个流程。
Power Automate:将 Excel OneDrive 表复制到另一个 Excel OneDrive 表的底部
问题是我不理解第二个脚本,所以我无法将它修改为我需要的内容(工作簿末尾的那个粘贴)
链接上的脚本
For Run script I have
function main(workbook: ExcelScript.Workbook) {
const sheet = workbook.getWorksheets()[0];
let lastRow = sheet.getUsedRange(true).getLastCell().getRowIndex() + 1;
let rng = "A3:P" + lastRow
let tableTest = sheet.getRange(rng).getValues();
console.log(tableTest);
}
Then under Compose
@{outputs('Run_script')?['body']?['Logs'][0]}
Then Initialize the "RemoveString" variable
@{split(outputs('Compose'),' ')[0]}
Then Initialize the "NewString" variable
@{replace(outputs('Compose'),variables('RemoveString'),'')}
Then Run Script 2 and add "NewString" as the parameter.
function main(workbook: ExcelScript.Workbook, rangeTest: string) {
let table = workbook.getTable("BacklogTable");
let str = rangeTest;
let testerTest = JSON.parse(str);
table.addRows(null, testerTest);
}
RemoveString 的原因是从输出中删除日期和时间戳