473,400 Members | 2,145 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,400 software developers and data experts.

Finance Statement problem?

Hi all,

I am using MS Access 2002. i am building a database for a Finance Company
I have 2 tables - tblCustomer (personal Details and PK is LoanNumber)
tblLoan (PK is LoanID)

Relationship is 1-to-many.

With the information i have gained so far from TSDN forum, i could write some VBA code for my database. I close to finish building my database but i was stuck in doing the report.

I need to create a report that shows all the payments made in terms of Principal Loan Amount and also for all interest paid between 3 month (say january to march).
i am trying to achieve similar to a bank statement.

I have created a parameter query using fields from both the tables. the resulting query is based on the value entered by the user for LOANNUMBER.

Once the report has been generated, the user needs to make some changes manually. i could not edit a report.

So i came to know it is only possible to transfer the results to word and then make the changes before printing.

Is it possible, to have the same format in word?

How should i transfer the fields from a report to word???

I wanted to retain the same structure in word as in the report. the rtf format misses the tables, lines and logo but is there any way i could acheive some editable report?

I am scared it may include lot of coding...but anway, its nothing to learn though. :).
Need someone's assistance.

thanks
Catherine
Aug 22 '07 #1
9 1870
Rabbit
12,516 Expert Mod 8TB
Hi all,

I am using MS Access 2002. i am building a database for a Finance Company
I have 2 tables - tblCustomer (personal Details and PK is LoanNumber)
tblLoan (PK is LoanID)

Relationship is 1-to-many.

With the information i have gained so far from TSDN forum, i could write some VBA code for my database. I close to finish building my database but i was stuck in doing the report.

I need to create a report that shows all the payments made in terms of Principal Loan Amount and also for all interest paid between 3 month (say january to march).
i am trying to achieve similar to a bank statement.

I have created a parameter query using fields from both the tables. the resulting query is based on the value entered by the user for LOANNUMBER.

Once the report has been generated, the user needs to make some changes manually. i could not edit a report.

So i came to know it is only possible to transfer the results to word and then make the changes before printing.

Is it possible, to have the same format in word?

How should i transfer the fields from a report to word???

I wanted to retain the same structure in word as in the report. the rtf format misses the tables, lines and logo but is there any way i could acheive some editable report?

I am scared it may include lot of coding...but anway, its nothing to learn though. :).
Need someone's assistance.

thanks
Catherine
You could start with a template and the use code to fill in the template but that requires quite a bit of coding.

What do the users need to edit that can't be done in Access? Maybe there's a way to do it in Access that you don't know about.
Aug 22 '07 #2
You could start with a template and the use code to fill in the template but that requires quite a bit of coding.

What do the users need to edit that can't be done in Access? Maybe there's a way to do it in Access that you don't know about.
thanks for your reply Rabbit.

the actual statement comprises of 2 tables. First table shows details about the Loan Amount paid by the Customer. And the second table shows details about the Interest based on the Loan for each month.

the size of the table increase/decrease with respect to the information for each rows.

before taking the print out, the user want to change something in the description part either for Loan or Interest Table.

As of now my report is showing only the Interest information for each month in a Table format.
how can include both Principal and Interest information in the same report?

and how i can transfer the the report from Access report to MS Word ???

It will be of great help if you could assist me in this regard.

thanks,
Catherine
Aug 22 '07 #3
Rabbit
12,516 Expert Mod 8TB
thanks for your reply Rabbit.

the actual statement comprises of 2 tables. First table shows details about the Loan Amount paid by the Customer. And the second table shows details about the Interest based on the Loan for each month.

the size of the table increase/decrease with respect to the information for each rows.

before taking the print out, the user want to change something in the description part either for Loan or Interest Table.

As of now my report is showing only the Interest information for each month in a Table format.
how can include both Principal and Interest information in the same report?

and how i can transfer the the report from Access report to MS Word ???

It will be of great help if you could assist me in this regard.

thanks,
Catherine
If they want to change something in the description field, can't they just do this in a form? No need to export the data to word and then change it.

You can include both on the same report by using subreports.

As far as I know you can't transfer a report to Word.
Aug 22 '07 #4
If they want to change something in the description field, can't they just do this in a form? No need to export the data to word and then change it.

You can include both on the same report by using subreports.

As far as I know you can't transfer a report to Word.
I have a description field for each payment and i hav include the same in the report.
but they felt it will be better if there is any option so that they can edit ,if any, before taking a printed copy.

i have only two tables - Customer and Loan.

the Loan table has got both Loan Amount Information and also Interest Information.

My Statement must have following format:

Heading

Customer Address


A table showing Information about all transaction made against LOan Amount
Fields for Loan Payment Table:
Date Description Debit Credit Balance


A table showing Interest information for each month. Fields for Interest Table:
IntrerestDate Int_Description Int_Debit Int_Credit Int_Balance


All the above fields for both table are from Loan table.
Only the Address field is from the Customer Table.

Both Tables are linked through the field Loan Number

is it possible to acheive ???
Need someone's assistance..

thanks n regards,
Catherine
Aug 23 '07 #5
Rabbit
12,516 Expert Mod 8TB
I have a description field for each payment and i hav include the same in the report.
but they felt it will be better if there is any option so that they can edit ,if any, before taking a printed copy.

i have only two tables - Customer and Loan.

the Loan table has got both Loan Amount Information and also Interest Information.

My Statement must have following format:

Heading

Customer Address


A table showing Information about all transaction made against LOan Amount
Fields for Loan Payment Table:
Date Description Debit Credit Balance


A table showing Interest information for each month. Fields for Interest Table:
IntrerestDate Int_Description Int_Debit Int_Credit Int_Balance


All the above fields for both table are from Loan table.
Only the Address field is from the Customer Table.

Both Tables are linked through the field Loan Number

is it possible to acheive ???
Need someone's assistance..

thanks n regards,
Catherine
This is more than possible to achieve in one query/report. You just have to join all the tables together. I can't say how it'll be done for yours because I don't know how the tables are laid out but from what you tell me, it sounds more than possible.

As for editing the report before printing. Just have them edit the information in a form before opening the report, there's no need to go through the extra trouble of exporting to a word document.
Aug 23 '07 #6
This is more than possible to achieve in one query/report. You just have to join all the tables together. I can't say how it'll be done for yours because I don't know how the tables are laid out but from what you tell me, it sounds more than possible.

As for editing the report before printing. Just have them edit the information in a form before opening the report, there's no need to go through the extra trouble of exporting to a word document.

Thanks for your reply Rabbit.

I will let the users to make the changes in form before printing.

but i am still looking for an answer to include 2 tables in the same report.
the fields corresponding to both tables are from the same table tblLoan.

thanks again for your effort.

regards,
Catherine
Aug 27 '07 #7
Rabbit
12,516 Expert Mod 8TB
If I understand correctly, your tables are laid out like this:

Customer Table
Loan Number; Key
CustomerAddress; String

Loan Table
Loan Number; Key
All Other Fields

You can just make a query and join it on Loan Number.
Aug 27 '07 #8
If I understand correctly, your tables are laid out like this:

Customer Table
Loan Number; Key
CustomerAddress; String

Loan Table
Loan Number; Key
All Other Fields

You can just make a query and join it on Loan Number.
Customer Table - Primary Key is Loan Number
Address Fields


Loan Table - Primary Key is Loan ID
Foreign Key is Loan Number.
Loan Amount, PreviousPaidLoan,LoanPaidDate,LoanBalance.
Interest,InterestPaidDate,InterestPaidAmount,Inter estBalance


the fields i want to be listed in a 2 seperate tablular format are from Loan table.

in the report, i want 2 tables . one showing information about Loan for each month
Other table showing Interest information for each month.

i dont have problem in getting one information.

is it possible to show these information in the report as two different tables.??

thanks and regards,
Catherine
Aug 27 '07 #9
Rabbit
12,516 Expert Mod 8TB
Yes, like I mentioned earlier, use subreports. Make 2 reports and include them in as subreports in one report.
Aug 27 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: Geoffrey | last post by:
Dear Java-lovers, We need a really good charting tool for the users to do all kind of things to the graphs, but we don't have time to develop one, so we decided to purchase an existing one out...
13
by: dan roberts | last post by:
Folks, This is my first Python project so please bear with me. I need to download data from Yahoo Finance in CSV format. The symbols are provided in a text file, and the project details are...
0
by: Andy Robinson | last post by:
After numerous requests from people working in this field, including a substantial show of hands at the Uk Python conference in April, we have decided to start up a new python-finance list. The...
1
by: kiran | last post by:
Hello, Please find the two requirements details as follows Oracle Apps Finance Functional Location: Houston, TX Duration: Long-term Start date: Immediate Required Skills:
2
by: James | last post by:
Is there a way to get a list of stock quotes from yahoo finance into you c# application? I looked on the yahoo finance page and cannot see a wsdl end point. Can somebody please point me in the...
2
by: probashi | last post by:
I would like to add Chart Like Google Finance into my ASPX pages. How involved this will be !!! Thanks.
0
by: cmrodrig | last post by:
For a long time, I've been looking for a solution to this error. There are some reports to Yahoo support, but none could solve this problem. It happens when we try to open Java charts on Yahoo...
5
theGeek
by: theGeek | last post by:
Hi All, I am keen to know about what are the general chores that are needed to be done in an IT project of finance domain. I haven't had any opportunity to work on finance domain but soon I am...
13
by: NitinSawant | last post by:
Hello, I'm trying to extract data from Google finance csv file using javasript. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.