I have a situation where I'd like to get the sum of one column and display it
e.g in activeadmin
ActiveAdmin.register Expense do
index do
column :amount
column :details
column :created_at
default_actions
end
end
I need to sum the amount column and show it. Also I can't figure out where to show the Total Sum, maybe the sidebar?
If the results are filtered then the sum has to change accordingly to results shown.