Re: Carry forward balance of account



On Jul 7, 12:32 am, Glynn <Gl...@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
In my Accounting application I need to carry forward the balances of account,
at year-end close, to the new year, as Opening Balances in each ledger
account.
At present I achieve this by:
          1)  Copying the old batabase File to a back-up file - so as to
preserve to old
               year in its entirety - all its transactions and reporting.
          2)  Deleting all the transactions in the current DB file - so as
to have a clean
               start for the new year.
          3)  Manually entering Debit or credit entries to each Ledger
account, as
               Opening balances for the new year.

This is not very smart - time consuming, and prone to unacceptable error.

There must be a way to programmatically 'carry forward' the balances of each
Ledger account from the old year to the new year.  The 'balances' are
calculated amounts, being [Total Credits minus Total Debits] for each Ledger.

I would appreciate code, or being pointed in the right direction.

--
Glynn

How do you do this when you do it manually? Is it just your ending
balance from the previous year? If so, then you can create a query to
calculate the ending balance from the previous year and then appending
that record/those records (in the case of multiple accounts) to a
table in another database. One way to do it would be to use an append
query (turn your summary query that you use to get the ending balance
into an append or make table query and specify the destination
database.).

You could either use a linked table (flexible, but would require
caution) or hard code the destination database in SELECT INTO...
statement.
.



Relevant Pages

  • RE: Carry forward balance of account
    ... your database contains hundreds of thousands of transactions. ... CurrentFiscalYear field in my Company table... ... Use the Income and Expense balances to calculate a net profit or loss ... Update the G/L AccumulatedProfitOrLoss account accordingly. ...
    (microsoft.public.access.modulesdaovba)
  • Re:
    ... grab account numbers are their balances. ... I have been able to iterate over ... You may want to use BigDecimal instead of floats for money. ...
    (comp.lang.ruby)
  • Re: Underlying agenda
    ... Can Joe Average read a credit agreement? ... ET, on its Payment Due Date), or the account balance is over-the-credit-limit, we may increase each of your account's Standard APRs up to the Default APR. ... "If your account has balances with different APRs, payments are applied to the balance with the lowest APR before any payments are applied to balances with higher APRs. ...
    (soc.retirement)
  • Re:
    ... grab account numbers are their balances. ... I have been able to iterate over ... Note however that if you want correctness with currency values it is better to use BigDecimal instead of Float because of the increased exactness. ...
    (comp.lang.ruby)
  • Re: Pulling out funds? (Not until I have to)
    ... Interpoker closed all Americans accounts without ... in the account by check in 3 to 4 weeks. ... money to Neteller or wire etc. if I want to? ... they are going to go out of business and not refund account balances. ...
    (rec.gambling.poker)

Loading