TC Direct Store Audit Scorecard

Monthly audit for TC Acoustic direct retail stores | Inspire โ†’ Educate โ†’ Convert

Audit Details

Scoring:
โœ“
Pass
Fail
| Score = items passed รท total applicable items | N/A items are excluded from scoring | Gold 90%+ ยท A 80-89% ยท B 70-79% ยท C 60-69% ยท Fail <60%
Stage 1Inspire0/0 passedโ€”
โ†’
Stage 2Educate0/0 passedโ€”
โ†’
Stage 3Convert0/0 passedโ€”

Overall Score

โ€”
0 of 0 items scored

Action Items

Record issues and follow-ups. These export with your CSV.

Issue / Action
Owner
Due Date

Photo Submission Guide

For remote audits (MY & TH), staff submit photos using this naming convention.

What to PhotographNaming FormatExample
Storefront / window display[Store]_Storefront_[YYYYMMDD]SST_Storefront_20260318
Full store interior[Store]_Interior_[YYYYMMDD]SCS_Interior_20260318
Product wall / display[Store]_ProductWall_[YYYYMMDD]SST_ProductWall_20260318
Home theater demo area[Store]_DemoArea_[YYYYMMDD]SFS_DemoArea_20260318
Product tags close-up[Store]_Tags_[YYYYMMDD]Adelphi_Tags_20260318
Promotional materials[Store]_Promo_[YYYYMMDD]SCS_Promo_20260318
Screen content[Store]_Screen_[YYYYMMDD]SST_Screen_20260318
Checkout area[Store]_Checkout_[YYYYMMDD]Adelphi_Checkout_20260318
Issue found[Store]_Issue_[Desc]_[YYYYMMDD]SST_Issue_LightOut_20260318

Store Codes: SFS (Wheelock) | Adelphi (Adelphi) | SCS (Starhill) | SST (EmSphere)

How to Use the Exports

Two export options:
1. Export Summary CSV โ€” One row per audit with store, date, stage scores, overall score, tier. Paste into your master tracking sheet.

2. Export Detail CSV โ€” One row per item with pass/fail and comments. Use to find which items consistently fail.

Google Sheet Column Headers

Set up your master tracking sheet with these headers:

Store | Store Name | Date | Month | Week | Auditor | Type | Inspire (%) | Educate (%) | Convert (%) | Overall (%) | Tier | Items Passed | Total Items | Action Items

Google Sheets Integration Setup

One-time setup to enable the "Send to Google Sheets" button. Takes about 5 minutes.

Step 1: Create your Google Sheet

Create a new Google Sheet and add these headers in Row 1:

Timestamp | Store | Store Name | Date | Month | Week | Auditor | Type | Inspire (%) | Educate (%) | Convert (%) | Overall (%) | Tier | Items Passed | Total Items | Action Items | Failed Items
Step 2: Add the Apps Script

In your Google Sheet, go to Extensions โ†’ Apps Script. Delete any existing code, paste the code below, then click Save.

function doPost(e) { var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); var data = JSON.parse(e.postData.contents); sheet.appendRow([ new Date().toISOString(), data.store, data.storeName, data.date, data.month, data.week, data.auditor, data.type, data.inspire, data.educate, data.convert, data.overall, data.tier, data.passed, data.total, data.actions, data.failedItems ]); return ContentService .createTextOutput(JSON.stringify({status: "success"})) .setMimeType(ContentService.MimeType.JSON); } function doGet(e) { return ContentService .createTextOutput("TC Audit endpoint is live.") .setMimeType(ContentService.MimeType.TEXT); }
Step 3: Deploy as Web App
  1. In Apps Script, click Deploy โ†’ New deployment
  2. Click the gear icon next to "Select type" โ†’ choose Web app
  3. Set "Execute as" to Me
  4. Set "Who has access" to Anyone
  5. Click Deploy and Authorize access when prompted
  6. Copy the Web app URL (it starts with https://script.google.com/macros/...)
Step 4: Paste your Web App URL below

This is saved in your browser so you only need to do this once.

How it works after setup:

Complete the audit โ†’ Click "Send to Google Sheets" โ†’ Data automatically appears as a new row in your sheet. That's it. Your staff just need the HTML file and the URL saved โ€” they never need to touch the Google Sheet directly.