发生了错误!麻烦反馈至contact@cnblogs.com 评论框加载失败,请与管理员联系(contact@cnblogs.com)。
Power Automate clearly didn't like me passing in the base64 string directly from the PowerApps input, so I've initialised a string variable and hardcoded it in a cell in a hidden sheet in an earlier step. I've then modified my script to create a string var...
function main(workbook: ExcelScript.Workbook, base64ImageString1:string, base64ImageString2:string) { const sheet = workbook.getWorksheet("Output"); const range1 = sheet.getRange("C43"); const range2 = sheet.getRange("I43"); let image1 = sheet.addImage(base64ImageString1); image...
This is a cross post from the Power Platform Community, as i'm not sure where is best to ask my question. I have developed a mobile power app for my...