Expenses Per Category {% if report.startDate %} (From {{report.startDateUsingFormatter}} {% if report.endDate %} To {{report.endDateUsingFormatter}}) {% else %} To Present) {% /if %} {% /if %}

{% decimalMath totalCost = 0 %} {% for categoryReport in expensesPerCategory %} {% /for %}
Name Raw Cost Total Cost
{{categoryReport.category.name}} {{categoryReport.cost}} {{categoryReport.costUsingFormatter}} {% decimalMath totalCost = totalCost + categoryReport.cost %}
Total: {{totalCost | currency_format}}

Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.