select d. *
,dense_rank() over (partition by month_num order by week) as month_week
,substring(day_week, 1,3) as day_abbr
,coalesce(w.workouts,0) as workouts
,case when w.workouts is null then 'N' else 'Y' end as did_workout
,w.workout_list
,case
when w.workouts is null then 'N'
when ((w.cardio_workouts>0 and w.strength_workouts>0) or w.bootcamp_workouts>0) then 'Cardio & Strength'
when w.cardio_workouts >0 then 'Cardio'
when w.strength_workouts>0 then 'Strength'
else 'Mobility'
end as workout_type
-- create row number based on month for facetting
,case
when month_num < 5 then 1
when month_num <9 then 2
when month_num <13 then 3
end as row_num
-- create columnnumber based on month for facetting
,case
when month_num IN (1,5,9) then 1
when month_num IN (2,6,10) then 2
when month_num IN (3,7,11) then 3
when month_num IN (4,8,12) then 4
end as col_num
from days d
left join (
--- active days aggregated
select
created_at as workout_date
,string_agg(distinct(fitness_discipline), ', ') as workout_list
,count(*) as workouts
,count(case when fitness_discipline = 'Strength' then id end) as strength_workouts
,count(case when fitness_discipline IN ('Cardio','Running','Walking','Cycling') then id end) as cardio_workouts
,count(case when fitness_discipline IN ('Yoga','Stretching') then id end) as mobility_workouts
,count(case when fitness_discipline LIKE '%Bootcamp' then id end) as bootcamp_workouts
from workouts
where fitness_discipline NOT IN ('Meditation','NA')
group by 1
) w on w.workout_date = d.date