Balance Sheet

Balance Sheet

As of
= 11 && $account_type <= 19) { $balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses']; print_row($row, $balance, $currency_format); $total_assets += $balance; $formatted_total_assets = numfmt_format_currency($currency_format, $total_assets, $row['account_currency_code']); } } ?> = 21 && $account_type <= 29) { $balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses']; print_row($row, $balance, $currency_format); $total_liabilities += $balance; $formatted_total_liabilities = numfmt_format_currency($currency_format, $total_liabilities, $row['account_currency_code']); } } ?> = 30) { $balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses']; print_row($row, $balance, $currency_format); $total_equity += $balance; $formatted_total_equity = numfmt_format_currency($currency_format, $total_equity, $row['account_currency_code']); } } ?>
Account Type Account Name Account Balance
Assets
Total Assets
Liabilities
Total Liabilities
Equity
Total Equity
Total Liabilities and Equity
Unbalanced:
"; echo ""; echo "$account_name"; echo "$formatted_balance"; echo ""; } ?>