Microsoft Access Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsDatabasesMicrosoft Access Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old November 30th, 2004, 09:06 AM
Rishyraj Rishyraj is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 53 Rishyraj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 29 m
Reputation Power: 4
Recurring data

Hi All,

I am trying to create a data base for credit files. I will have a borrower name and financial documents like tax returns and financial stmts which are recurring. We get fin stmt every 3 months and tax returns every year. so what would be the best way to create a database with out overwriting the existing list of documents.

Thanks for your help

RIshy

Reply With Quote
  #2  
Old November 30th, 2004, 04:55 PM
lwells lwells is offline
Contributing User
Dev Articles Novice (500 - 999 posts)
 
Join Date: Sep 2004
Posts: 632 lwells User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 21 h 59 m 38 sec
Reputation Power: 5
Hi Rishy,

How are you going to get your financial documents? Mentally I picture the tax return as a copy of the return sent to the government once a year. Trying to take the data from that form and placing it into a table would seem rather tedious. If you are planning on storing the return as a scanned image, then you can create a folder to hold each return and then use an Access form to display the image with some simple code. Otherwise in what format are you going to receive these documents in. There are several programs that store this type of data in a suitable table type format which if that is the case, then you could append the data to a table in your Access application as you get them or create a link to them.

Just curious in how you are going to receive this information and in what type of format. Knowing that will enable you to figure out the best way to integrate the data into Access.

lwells

Reply With Quote
  #3  
Old November 30th, 2004, 08:29 PM
Rishyraj Rishyraj is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 53 Rishyraj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 29 m
Reputation Power: 4
Iwells,

I am sorry for not being clear. In fact, there is no scanning or imaging. Its only a paper document and we enter the data in to form manually.

I have created a form (imagine) in the following manner and i feel there is an efficient way of doing it.

Borrower name ________________________

Financial statement recd date 1 ___11/01/2004___ Tax returns year1 _2002________

Financial statement recd date 2 ___12/01/2004___ Tax returns year2___2003______

Financial statement recd date 3 ___01/01/2005___ Tax returns year3___2004_____


The main purpose of creating a form and manually entering data is to track the fin stmt/tax returns every 3months/year respectively using a query. I will be glad if you can advise me on to create a query/code using the stored table data so that every 3 months from the date of fin stmt, if i can get a report of fin stmt due, to follow with the customer.

I hope, i am not confusing.

Thank you

Rishy









Quote:
Originally Posted by lwells
Hi Rishy,

How are you going to get your financial documents? Mentally I picture the tax return as a copy of the return sent to the government once a year. Trying to take the data from that form and placing it into a table would seem rather tedious. If you are planning on storing the return as a scanned image, then you can create a folder to hold each return and then use an Access form to display the image with some simple code. Otherwise in what format are you going to receive these documents in. There are several programs that store this type of data in a suitable table type format which if that is the case, then you could append the data to a table in your Access application as you get them or create a link to them.

Just curious in how you are going to receive this information and in what type of format. Knowing that will enable you to figure out the best way to integrate the data into Access.

lwells

Reply With Quote
  #4  
Old November 30th, 2004, 09:13 PM
lwells lwells is offline
Contributing User
Dev Articles Novice (500 - 999 posts)
 
Join Date: Sep 2004
Posts: 632 lwells User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 21 h 59 m 38 sec
Reputation Power: 5
Hi Rishy,

I am going to take a really wild guess at what you are wanting to do here. So if I am way off base, please tell me and I won't be offended at all. What it sounds like you are describing to me, is the one to many relationships. One borrower that will have many financial statements and yearly tax returns. So I would set up three tables, the first table containing all the information about the borrower. The next table containing all the information from the financial statement, and the last table containing all the information from the yearly tax returns.

Then your main form will display the borrower information and attach two subforms linked to the mainform, one for the financial data, and the other for the tax return data. When viewing a specific borrower, the two subforms would show the specific data or records for each of the financial statements and the tax returns for that borrower. New data can be added to either of the two subforms, and everything would stay in sync as you scroll through each of the borrowers on the main form. If the subforms were in datasheet view, you would easily see all previously entered data from prior months or previous years.

Is this anything close to what you were wanting to do?

lwells

By the way, creating queries from these tables will be fairly easy to do, so you can extract specific data for reports or setting up reminders for the next due date of financial statements etc. Just make sure you set up the one-to-many relationships in the database relationship window, which will help build the queries correctly.

Reply With Quote
  #5  
Old December 1st, 2004, 09:55 PM
Rishyraj Rishyraj is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 53 Rishyraj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 29 m
Reputation Power: 4
Thanks Iwells,

Data sheet view is what i was looking for.




Quote:
Originally Posted by lwells
Hi Rishy,

I am going to take a really wild guess at what you are wanting to do here. So if I am way off base, please tell me and I won't be offended at all. What it sounds like you are describing to me, is the one to many relationships. One borrower that will have many financial statements and yearly tax returns. So I would set up three tables, the first table containing all the information about the borrower. The next table containing all the information from the financial statement, and the last table containing all the information from the yearly tax returns.

Then your main form will display the borrower information and attach two subforms linked to the mainform, one for the financial data, and the other for the tax return data. When viewing a specific borrower, the two subforms would show the specific data or records for each of the financial statements and the tax returns for that borrower. New data can be added to either of the two subforms, and everything would stay in sync as you scroll through each of the borrowers on the main form. If the subforms were in datasheet view, you would easily see all previously entered data from prior months or previous years.

Is this anything close to what you were wanting to do?

lwells

By the way, creating queries from these tables will be fairly easy to do, so you can extract specific data for reports or setting up reminders for the next due date of financial statements etc. Just make sure you set up the one-to-many relationships in the database relationship window, which will help build the queries correctly.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsDatabasesMicrosoft Access Development > Recurring data


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT