Limit CSV export by Day, Week and Month
Hi there,
is there an easy way to limit the results inside a CSV export to a specific time-frame, like day, week and month?
Thanks!
Hey Sacha, you would just want to use a where query to scope to a date range before calling to_csv on it. You may need to change it from all.each
to scoped.each
in order for Rails to respect the scope if it wants to override your where
query. That should do it!