Lead in real-time →
Live sales and ARR in one connected spreadsheet—no exports required.
Next, join the Date and Clean ARR tables together where the dates from the Date table are between the primary object’s start and end dates. We call this the Padded ARR table.
Here’s what the logic looks like:
FROM date_table d
LEFT JOIN clean_arr_table c ON d.date BETWEEN c.period_start_date_clean AND c.period_end_date_clean
The end result returns a record each date the primary object was active. Extrapolating this across all customers makes it possible to pull ARR on any date.
Next topic