Automation Recipe: Weekly Caseload Report Generator
What This Builds
Instead of spending 30-45 minutes every Friday manually reviewing your caseload and writing a status report for your supervisor, this automation does it for you. When you update your caseload Google Sheet, Zapier sends the data to ChatGPT, which generates a formatted weekly summary, and emails it to your supervisor — all automatically. You fill in your case updates; the report writes itself.
Prerequisites
- Comfortable using Google Sheets for caseload tracking (Level 2)
- A Zapier account (free tier has 100 tasks/month; paid plans start at ~$20/month)
- An OpenAI API key (different from ChatGPT Plus — you need the API at platform.openai.com; billing is pay-per-use, typically $1-3/month for this use case)
- A Google account
- Time needed: 90 minutes to build; then fully automatic each week
- Cost: Zapier free tier + OpenAI API (~$1-3/month)
The Concept
Automation platforms like Zapier work by connecting apps with "if this, then that" logic. In this case: "If it's Friday at 4pm AND my Google Sheet has been updated → send the caseload data to ChatGPT → email me and my supervisor the summary." You set it up once; it runs every week without you touching it. Think of it like having someone sitting at your desk every Friday afternoon, looking at your spreadsheet, writing the report, and sending it — except it costs $3/month instead of an employee.
Build It Step by Step
Part 1: Prepare your Google Sheet
Your caseload Google Sheet needs to be structured consistently for Zapier to read it. Use these columns: Patient ID | Unit | Admit Date | Days In House | Discharge Target | Priority | Current Status | Next Action | Barriers
Important: Keep the column headers exactly as shown — Zapier uses them to parse the data.
At the bottom of your sheet, add a summary row (optional but helpful):
- Total active patients: =COUNTA(A2:A100) (adjust range to your data)
- High priority count: =COUNTIF(F2:F100,"High")
- Patients over 7 days: =COUNTIFS(D2:D100,">"&7)
Part 2: Get your OpenAI API key
The ChatGPT Plus subscription doesn't give API access — you need to set up API billing separately.
- Go to platform.openai.com (different from chat.openai.com)
- Sign in with your OpenAI account
- Navigate to Settings → API Keys → Create new secret key
- Copy the key and store it securely (you'll need it in Zapier)
- Add a payment method — you'll be charged only for actual usage (typically a few cents per report)
Part 3: Build your Zapier automation
- Go to zapier.com and create a free account
- Click Create Zap
Trigger (Step 1): Schedule — Every Friday
- App: Schedule by Zapier
- Event: Every Week
- Day of the Week: Friday
- Time: 4:00 PM
Action (Step 2): Google Sheets — Get many spreadsheet rows
- App: Google Sheets
- Event: Get Many Spreadsheet Rows
- Spreadsheet: Select your caseload spreadsheet
- Worksheet: Select your caseload sheet
- Filter: Status does not contain "Discharged" (to only pull active patients)
Action (Step 3): OpenAI — Send prompt
- App: OpenAI (GPT-4)
- Event: Send Chat Message
- Model: GPT-4o or GPT-3.5-turbo
- System Message: "You are a clinical social work supervisor assistant. Format caseload data into a concise weekly summary report. Use professional clinical language."
- User Message (paste this, with Zapier fields inserted):
Generate a weekly social work caseload summary for the week of [today's date]. Format as:
CASELOAD SUMMARY — Week of [date]
Total active patients: [count]
High priority: [count]
Patients over 7 days: [count]
HIGH PRIORITY PATIENTS:
[List each high-priority patient by ID with their status and next action]
DISCHARGE-READY PATIENTS:
[List patients with "Ready for discharge" status]
BARRIERS NEEDING ATTENTION:
[List any significant barriers from the Barriers column]
Overall assessment: [2-sentence summary of caseload status and key priorities]
Here is the current caseload data: [insert Zapier mapping of your Google Sheet data rows]
Action (Step 4): Gmail/Outlook — Send email
- App: Gmail or Outlook
- Event: Send Email
- To: Your email + your supervisor's email
- Subject: "Social Work Caseload Weekly Summary — [Date]"
- Body: The ChatGPT output from Step 3
Part 4: Test and activate
- Click Test Zap to run through all steps with your current data
- Check your email for the generated report
- Review the output — adjust your prompt in Step 3 if the format isn't quite right
- Turn on the Zap
Real Example: Weekly Report in Action
Setup: Your caseload sheet has 24 patients updated as of Thursday afternoon.
Input (automatic — Friday 4pm trigger fires): Zapier reads your Google Sheet. 24 active patients, 4 high priority, 3 over 7 days, 5 barriers noted.
Output (email arrives Friday 4:05pm):
CASELOAD SUMMARY — Week of March 20, 2026
Total active patients: 24
High priority: 4
Patients over 7 days: 3
HIGH PRIORITY PATIENTS:
- Patient A (ID: 1042): Unsafe discharge, SNF referral pending insurer approval. Next: follow up with Blue Cross by 3/21.
- Patient B (ID: 1051): Acute psychiatric crisis, ED hold, awaiting bed assignment. Next: contact crisis team.
[...]
OVERALL ASSESSMENT: Caseload remains elevated with 4 complex cases requiring immediate attention. Primary bottleneck is insurer prior auth delays affecting 3 discharge-ready patients.
Time saved: What took 30-45 minutes every Friday now takes 0 minutes of your active time.
What to Do When It Breaks
- Zap stops running → Check Zapier's Task History for error messages; usually it's a Google Sheets connection refresh needed
- Report format is wrong → Refine the prompt in your OpenAI step; be more specific about format requirements
- OpenAI step fails → Check your API key is still valid and you have billing set up at platform.openai.com
- Too many tasks used (free tier) → Upgrade Zapier to Starter plan or reduce the trigger to bi-weekly
Variations
- Simpler version: Skip the email step — just have Zapier save the ChatGPT output to a Google Doc you review manually
- Extended version: Add a Slack message step that posts the summary to your team channel, or a Notion step that saves each weekly report to a database for historical tracking
What to Do Next
- This week: Build the Zap using test data before pointing it at your real caseload sheet
- This month: Refine the report format based on what your supervisor finds most useful
- Advanced: Add a second Zap that triggers when a patient's "Days In House" exceeds 10 and automatically drafts a follow-up email to the attending physician about discharge timeline
Advanced guide for clinical social worker professionals. Automation tools change frequently. OpenAI API pricing varies — check platform.openai.com for current rates.