Expense Summary {% if report.startDate %} (From {{report.startDateUsingFormatter}} {% if report.endDate %} To {{report.endDateUsingFormatter}}) {% else %} To Present) {% /if %} {% /if %}

{% decimalMath catAmount = 0 %} {% decimalMath totAmount = 0 %} {% for cat in expenseCategories %} {% for entry in expenses %} {% if cat.name isequaltostring entry.expenseCategoryName %} {% decimalMath catAmount = catAmount + entry.cost %} {% decimalMath totAmount = totAmount + entry.cost %} {% /if %} {% /for %} {% decimalMath catAmount = 0 %} {% /for %}
Description Date Amount
{{ entry.note }} {{ entry.dateUsingFormatter }} {{ entry.costUsingFormatter }}
{{ cat.name }} {{catAmount | currency_format}}
Total: {{totAmount | currency_format}}

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