raziel3
Registered User.
- Local time
- Today, 11:58
- Joined
- Oct 5, 2017
- Messages
- 316
I'm trying to create a bank reconciliation in Access. Here's what I have so far.
Tables:
BANKSTMT - Uploads the Bank Statement to this table.
CHQREG - Keeps the listing of cheques issued, amount and cleared date
DEPOSITS - Records of Deposits made and date.
Queries (Grouped by Month End)
BANKRUNNING: Running totals of the BANKSTMT
GLRUNNING: Running totals of CHQREG and DEPOSITS
GLDepositTTL: Total Deposits
GLCHQIssued: Total Cheques Issued
GLCHQCleared: Total Cheques Cleared
Possible Report Format:
Anyone have a template to get me started?
Tables:
BANKSTMT - Uploads the Bank Statement to this table.
CHQREG - Keeps the listing of cheques issued, amount and cleared date
DEPOSITS - Records of Deposits made and date.
Queries (Grouped by Month End)
BANKRUNNING: Running totals of the BANKSTMT
GLRUNNING: Running totals of CHQREG and DEPOSITS
GLDepositTTL: Total Deposits
GLCHQIssued: Total Cheques Issued
GLCHQCleared: Total Cheques Cleared
Possible Report Format:
Code:
+--------------------------------------+----------------+
| STATEMENT DATE | 31-Oct-22 |
+--------------------------------------+----------------+
| | |
| BANK ENDING BALANCE AS PER STATEMENT | 11,047,635.70 |
| | |
| GL REGISTER | 10,706,231.40 |
| | |
| LESS: UNPRESENTED CHEQUES | 771,155.89 |
| | |
| ADD: DEPOSITS IN TRANSIT | 479,723.00 |
| | |
| LESS: BANK FEES | 49,971.41 |
| | |
| UNRECONCILED DIFFERENCE | (0.00) |
+--------------------------------------+----------------+
Anyone have a template to get me started?