|
HeyReader, Most analysts never think to ask: "Why are our customers cancelling?" Everyone looks at bookings. Everyone reports revenue. But the data hiding in your cancelled orders often tells a more important story than your completed ones. And analysts that want to move from beginner to intermediate SQL skill level have an unfair advantage here. Because there's a sequence to work through this kind of problem. That's what we're covering here. At Summit Adventures (the fake adventure tourism company I created to help people learn business analytics), nearly 46% of bookings end up cancelled. That's a staggering number! And exactly the kind of pattern that, once you understand it, leads to real business improvements. Let me show you how to investigate cancellation patterns step by step. Step 1: Understand the ScaleBefore diving into "why," start with "how much":
For Summit Adventures, the breakdown looks roughly like:
A 47% cancellation rate is a significant business problem. But that number alone doesn't tell you what to do about it. You need to dig deeper. Step 2: When Do Cancellations Happen?Timing reveals a lot. Do customers cancel right away, or weeks later?
If most cancellations happen within 24 hours, your checkout process might be creating buyer's remorse. If they happen weeks later, customers might be finding better alternatives or facing scheduling conflicts. Step 3: Which Expedition Types Get Cancelled Most?
This tells you whether specific types of expeditions have higher cancellation rates. If climbing trips cancel at 55% but cultural tours cancel at 35%, that's actionable information. Maybe climbing trips need better expectation-setting, or maybe the difficulty descriptions need adjustment. Step 4: Interpret the Cancellation ReasonsThis is where qualitative data meets quantitative analysis:
Summit Adventures tracks reasons like "scheduling conflict," "changed plans," "found alternative," and "financial reasons." Each category suggests a different business response:
Step 5: What's the Revenue Impact?The final question: how much money is this costing?
Now you can tell your leadership: "We're leaving hundreds of thousands of dollars on the table due to cancellations. Here's where the biggest losses are, and here are three things we can do about it." Much different conversation than just saying "our cancellation rate is 46%" and leaving it at that. Breaking Down the SequenceThis investigation followed a natural analytical progression:
This sequence works for any business problem, not just cancellations. Customer churn, support tickets, employee turnover, product returns. Same investigative pattern. Try This At Your JobReplace "cancellations" with whatever your company tracks that represents lost opportunity:
The queries adapt but the investigative pattern stays the same. Start with scale, then timing, then categories, then reasons, then impact. Until next time, Brian P.S. This investigative approach (starting with a broad question and narrowing systematically) is at the heart of the Gordon Ramsay Blueprint in Module 8 of SQL for Business Impact. It's about diagnosing problems under pressure. Check it out at sqlforbusinessimpact.com. P.P.S. What's the equivalent of "cancellations" at your company? What data do you wish you were analyzing but haven't gotten to yet? Hit reply! I'd love to hear what you're working on. |
Learn to build analytics projects with SQL, Tableau, Excel, and Python. For data analysts looking to level up their career and complete beginners looking to get started. No fluff. No theory. Just step-by-step tutorials anyone can follow.
Hey Reader, Imagine you're a marketing analyst and your marketing director walks over and says: "I need our customers broken into spending tiers (VIP, Standard, and Low Value) so I can send different emails to each group." You have the data. But every customer just has a dollar amount. There's no "tier" column in the database. How do you create categories that don't exist yet? This is where CASE WHEN becomes one of the most useful tools in your SQL toolkit. The problem is that raw data...
Hey Reader, This week's newsletter is different. Not a regular "how to solve problem X with SQL" kinda thing. Because I've realized something: you can write perfect queries and still never get the career impact you want. You need "soft skills" like presenting your results to leadership in addition to "technical skills" like using CTEs and WINDOW functions. Let me show you what I mean. The Scenario Wednesday, 2pm. Q2 review meeting. CMO: "Our booking conversion is down. What's causing it?"...
Hello Reader, Imagine this scenario: Your CMO walks into Monday's meeting with a question: "I need to see our top 3 highest-revenue expeditions in EACH category - hiking, climbing, safari, cultural, and photography." Most analysts would write 5 separate queries, one per category. Or export to Excel and manually filter. An hour of work, minimum. Confident analysts write one query using window functions. Takes 3 minutes. Here's the skill that separates intermediate analysts from advanced ones....