Tools used: Notion, Google Sheets, Google Apps Script, Slack
๐งพ Overview
The Reliability Tracker system was designed to monitor, flag, and escalate practitioner-related incidents across operations. It included:
- A visual incident tracker in Notion
- A color-coded RSAT Tally dashboard in Google Sheets
- An escalation alert automation via Slack
The system helped improve visibility, accountability, and data-driven decision-making across the clinical support team.
๐งฉ Key Features
โ
1. Notion-Based Incident Tracker
- Created a database per practitioner using relations and rollups
- Implemented visual escalation flags like:
- ๐ฆ Strike 1
- ๐ฅ Strike 2
- ๐จ Strike 3
- โ ๏ธ Recurring Issue
- Used Notion formulas like this to track repeat incidents:
text
CopyEdit
if(prop("Same Type Count") == 1, "๐ฆ Strike 1",
if(prop("Same Type Count") == 2, "๐ฅ Strike 2",
if(prop("Same Type Count") == 3, "๐จ Strike 3",
"โ ๏ธ Recurring Issue"
)
)
)
- Created logic to count related issue types per category using nested replace/format/length formulas
๐ Zapier Integration with Google Sheets
- Connected Notion to Google Sheets using Zapier
- Every time a new incident was logged in Notion, Zapier automatically added it to a Google Sheet
- This kept the RSAT Tally dashboard in sync without manual copy-pasting