@GeoffRen : the script in the Code Editor in the Excel is this rather simple script:
function main(workbook: ExcelScript.Workbook) {
let users = workbook.getWorksheet("Users");
// Replace "GetEmployeeData" with "EmployeeData" on users
users.replaceAll("GetEmployeeData", "EmployeeData", {completeMatch: false, matchCase: false});
}