Big Value Charts: Simple Comparisons
The fastest way to get started is with the Big Value chart type.Month-over-month
- Pull two months of data.
- Use the Big Value chart and select Compare to previous row
- Lightdash automatically shows the comparison.
Same month, previous Year
- Pull ~13 months of data with
MONTH
andMONTH_NUM
time dimensions and your metric. - Create a table calculation to filter only the current month and the same month last year:
MONTH_NUM
time interval.
- Filter where the value of this table calculation is
true
. - Then use the Big Value chart with Compare to previous row
Trend line comparisons
Sometimes you need more than a single value—you want to see how trends evolve.By week of year
- Add week of year time dimension (1-52) on the X-axis.
- Plot the metric (e.g.
event_count
). - Group by year.
- This allows you to compare trends across years.
By day of month with running totals
- Compare June vs July (or any two months).
- Use day of month time dimension (1-31) on the X-axis, grouped by month.
- Add a running total table calculation.
- Optionally, use bars in the background to show cumulative progress.
Compare arbitrary weeks
You can also compare arbitrary weeks side by side.- Select specific weeks (e.g. 2, 8, 12).
- Use week of year as the grouping dimension.
- Apply a running total to see how each week accumulates.
- This shows how different weeks trend across the same range.
Year-over-year by month
For a full year-over-year comparison across months:- Pull two years worth of monthly of data.
- Use the
lag()
function in a table calculation to find the value from the same month last year:
- Create a percent change calculation:
- Filter out rows where
previous_year_value
isnull
.