Weight royalty timeliness, audit, and CSAT into a franchisee RAG scorecard. The workbook becomes the system of record; Apps Script owns the joins and business rules so analysts are not pasting monthly formulas.
Entry point `buildFranchiseeScorecard` reads typed columns with SpreadsheetApp batch APIs. SpreadsheetApp is the primary service; Time-driven describes how you usually invoke it after authorization.
Keep thresholds (grace days, bands, alert emails, API keys) in Config cells or Script Properties so the same .gs file promotes from sandbox to production without code edits.
This page is technical only: sheet layout, edge cases, runnable code, deploy steps, and FAQs for build weighted franchisee scorecards. No consulting pitch—just the pattern you can paste and harden.
Need this built? Hire a Google Apps Script developer →
Sheet / project setup
| Tab | Columns | Notes |
|---|---|---|
| Metrics | Franchisee, RoyaltyTimely, Audit, CSAT, Period | Inputs |
| Scorecard | RAG | Output |
What this script does
buildFranchiseeScorecard() weight royalty timeliness, audit, and CSAT into a franchisee RAG scorecard.
- Weighted score
- RAG bands
- Period column
Prerequisites
Container-bound script on the workbook that contains the tabs in the setup table. Authorize SpreadsheetApp scopes on first run.
- V8 runtime
- Exact sheet names
- Script timezone = ops timezone
Walkthrough
score=0.4×royaltyTimely+0.35×audit+0.25×csat; RAG thresholds 0.85/0.70.
Paste the code, set Config/Properties, run buildFranchiseeScorecard once, verify the output tab, then attach a Time-driven trigger.
Edge cases
Input metrics should be 0–1 normalized; raw CSAT 1–5 will overweight that term.
Testing
Use a sandbox copy with 3–5 known rows. Compute expected outputs for build weighted franchisee scorecards offline, run buildFranchiseeScorecard, and diff the output tab including one intentional bad row.
Hardening
Add LockService around multi-sheet writes if triggers can overlap. Log run timestamps. Keep API keys and alert emails in PropertiesService—not in shared cells.
Variations
Fork ideas: filter to one business unit, change grain (daily→weekly), or POST a summary payload after buildFranchiseeScorecard succeeds.
Operations notes
Assign an owner for the output tab, document regenerate steps, and treat `buildFranchiseeScorecard` as source of truth over ad-hoc cell formulas.
Full code: buildFranchiseeScorecard()
Run buildFranchiseeScorecard when source tabs are current. Edit sheet names and Config/Properties first.
function buildFranchiseeScorecard(){
const W={royalty:0.4, audit:0.35, csat:0.25};
const ss=SpreadsheetApp.getActive();
const rows=ss.getSheetByName('Metrics').getDataRange().getValues().slice(1);
const out=rows.map(r=>{
const royaltyOnTime=Number(r[1])||0;
const audit=Number(r[2])||0;
const csat=Number(r[3])||0;
const score=royaltyOnTime*W.royalty + audit*W.audit + csat*W.csat;
const rag=score>=0.85?'G': score>=0.7?'A':'R';
return [r[0],r[4],royaltyOnTime,audit,csat,score,rag];
});
const sh=ss.getSheetByName('Scorecard');
sh.clearContents();
sh.appendRow(['Franchisee','Period','RoyaltyTimely','Audit','CSAT','Score','RAG']);
if(out.length) sh.getRange(2,1,out.length+1,7).setValues(out);
}- Line 1: Entry point — bind triggers to buildFranchiseeScorecard.
- Line 4: Batch read; avoid per-cell getValue in loops.
- Line 16: Batch write output rows in one setValues call.
- Line 5: Rename sheet constants before production.
- Line 6: Rename sheet constants before production.
Deploy this example
- 01
Open Apps Script
In the bound spreadsheet: Extensions → Apps Script. For standalone projects, create one at script.google.com and link your Sheet by ID.
- 02
Paste and save
Add a .gs file, paste the code below, rename constants at the top (sheet names, column letters, API property keys), then save.
- 03
Authorize once
Run the main function from the editor. Accept OAuth scopes when prompted — triggers cannot run until authorization succeeds once.
- 04
Add the trigger
Triggers → Add trigger → choose the handler function and event (time-driven, on edit, or on form submit). Delete test triggers before production.
Before you run: build weighted franchisee scorecards
- 1Setup tabs exist with headers matching buildFranchiseeScorecard
- 2Dry-run on a copy workbook
- 3Timezone verified
- 4SpreadsheetApp authorization completed
- 5Output spot-checked against hand calc
- 6Time-driven trigger added only after validation
- 7Owners + alert recipients documented
Frequently asked questions
At minimum the tabs listed in the setup table for Build Weighted Franchisee Scorecards. Output tabs may be cleared each run—do not store source-of-truth data there.
Run from the Apps Script editor for dry runs. Production usually uses a Time-driven trigger after OAuth succeeds once.
Input metrics should be 0–1 normalized; raw CSAT 1–5 will overweight that term.
Per-cell calls burn quota and wall time. One read + one write keeps this pattern under the 6-minute execution cap longer.
PropertiesService (Script Properties) for API keys and alert inboxes. Config sheet is fine for non-secret thresholds.
Simple ratios maybe; build weighted franchisee scorecards needs joins, branching, or side effects (email/Docs/API) that Apps Script handles cleanly.
Keep the .gs in clasp/git. Avoid divergent copies of formulas on the output tab—regenerate from the script.