{{ budgetEnabled ? 'Set Your Budget' : 'Expense Tracking Mode' }}
Budget Tracking
{{ budgetEnabled ? 'Set a monthly budget to track spending limits' : 'Track expenses without a budget limit' }}
You're in expense-tracking mode. Add expenses and see your spending breakdown without setting a budget limit. Enable budget tracking above if you want to set spending limits.
Currency
Quick Insights
{{ insight.title }}
Financial Summary
Budget
{{ formatCurrency(budget) }}
Total Expenses
{{ formatCurrency(totalExpenses) }}
Remaining Balance
{{ formatCurrency(remainingBalance) }}
{{ Math.round(budgetUtilization) }}%
Total Expenses
{{ expenses.length }} items
Expense Breakdown
Weekly (per week)
{{ formatCurrency(deductions.weekly) }}
Fortnightly (per fortnight)
{{ formatCurrency(deductions.fortnightly) }}
Monthly (per month)
{{ formatCurrency(deductions.monthly) }}
Daily Avg (from monthly)
{{ formatCurrency(deductions.daily) }}
Monthly Equivalent Total
All expenses normalized to monthly for budget comparison:
Daily expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.daily) }}/month
Weekly expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.weekly) }}/month
Fortnightly expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.fortnightly) }}/month
Monthly expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.monthly) }}/month
Quarterly expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.quarterly) }}/month
Yearly expenses
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.yearly) }}/month
Total Monthly Equivalent:
{{ formatCurrencyNoDecimals(monthlyEquivalentBreakdown.total) }}
Upcoming Expenses
{{ expense.name }}
{{ expense.daysUntil === 0 ? 'Today' : expense.daysUntil === 1 ? 'Tomorrow' : expense.daysUntil + ' days' }}
{{ formatDate(expense.nextDueDate) }}
No upcoming expenses