The Board Meeting from Hell (And How to Avoid It)
A final, friendly reminder: our monthly price is increasing to $20. Price change is effective February 1. Big discount for the annual membership.
Lock-in the current price now!
Today we’re going to talk about the BOD Meeting from H.E.L.L. and how to avoid it.
I invest in companies that are building the future (pre-seed to series-A) because technology is the primary driver of global progress. Our focus is on disruptive fields: AI, robotics, next-generation computing, energy storage and digital assets.
I’ve sat in more board meetings than I care to count. But there is one specific type of meeting that haunts me. It is the one where the VP of Sales puts up a slide claiming we hit $5 million in ARR. Then the VP of Finance chimes in, looking pale, saying QuickBooks only shows $4.3 million in recognized revenue. Finally, the CMO argues that Marketing influenced 81% of either revenue number, but nobody can find the customer journey data to prove it.
The meeting devolves.
We stop talking about strategy.
We stop talking about growth.
Instead we spend three hours arguing about whose spreadsheet is right.
I invest in these companies to help build the future.. but typically, I end up helping them build revenue engines.
But you cannot tune an engine if your gauges are broken.
At the Series-A stages, data maturity is usually the biggest blocker to scaling. You have Salesforce for the sales team. You have QuickBooks Online for the finance team. You have Google Analytics and Mixpanel for the product and marketing teams.
They are all isolated islands.
The solution is not another spreadsheet.
The solution is a Single Source of Truth.
In this guide I am going to walk you through exactly how I help my portfolio companies set up BigQuery as that central nervous system. We will cover the architecture, the specific challenges of joining Salesforce to QuickBooks, and how to turn raw data into intelligence that actually increases your valuation.
You can apply these patterns to any business systems.
The Architecture: Stop Building Custom Pipelines
Ten years ago, you had to hire a dedicated data engineer just to keep the lights on. You had to write custom Python scripts to pull data from APIs. Those scripts broke every time Salesforce updated their API version.
Do not do this.
As an investor, if I see you building your own data connectors in 2026, I question your resource allocation. The modern data stack has solved this. We are going to use an ELT (Extract, Load, Transform) approach.
Here is the stack we are building:
Ingestion: Fivetran or Airbyte. These tools move data from your SaaS apps into the warehouse.
Storage: Google BigQuery. This is where the data lives.
Transformation: dbt (data build tool). This cleans the data and defines your business logic.
Visualization: Looker Studio, Tableau, etc…
This specific combination works because it separates moving the data from making sense of the data.
Why BigQuery?
I recommend BigQuery for B2B SaaS for three reasons.
First is the separation of compute and storage. You can store petabytes of data for pennies. You only pay when you run a query. For a startup with bursty reporting needs, this is infinitely cheaper than paying for a server that sits idle 22 hours a day.
Second is the ecosystem. Google Analytics 4 exports natively to BigQuery. If you are using the Google stack for marketing, the integration is seamless.
Third is speed. I want my CEOs to be able to ask complex questions and get answers in seconds, not hours.
If they can’t get answers, they waste CPU cycles getting them.
Cycles I pay for.
Step 1: Ingestion
We need to get the raw data out of your silos and into BigQuery.



