A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Repeating data in table



 
 
Thread Tools Display Modes
  #1  
Old March 20th, 2010, 07:06 PM posted to microsoft.public.access.forms
marine8105 via AccessMonster.com
external usenet poster
 
Posts: 1
Default Repeating data in table

I am trying to start simple and understand some of creating a dbase. However,
I want to develop a dbase to handle bank statements. Each client (using ssn)
can have several bank accounts. I have set up the form to gather the client
info, bank info, and of course the account numbers. How do I create a form
to allow me to enter deposits, other increases, checks, other decreases,
balance? I want to gather this information without having to input the ssn
and account number each time.

I am looking to input the account number, which will tie to the client ssn,
and then input the deposits and checks (along with the date of the statement)
for each month over what might be years. I can then query using dates and
ssn.

Thank you for any help.

Mike ONeil

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/201003/1

  #2  
Old March 20th, 2010, 09:09 PM posted to microsoft.public.access.forms
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Repeating data in table

On Sat, 20 Mar 2010 19:06:48 GMT, "marine8105 via AccessMonster.com"
u58684@uwe wrote:

I am trying to start simple and understand some of creating a dbase. However,
I want to develop a dbase to handle bank statements. Each client (using ssn)
can have several bank accounts. I have set up the form to gather the client
info, bank info, and of course the account numbers. How do I create a form
to allow me to enter deposits, other increases, checks, other decreases,
balance? I want to gather this information without having to input the ssn
and account number each time.

I am looking to input the account number, which will tie to the client ssn,
and then input the deposits and checks (along with the date of the statement)
for each month over what might be years. I can then query using dates and
ssn.

Thank you for any help.

Mike ONeil


STOP!!!

You're evidently missing the most basic principle of relational databases:
each type of Entity gets its own Table, and each individual Entity is
represented once and only once.

You should have a table of Clients, with SSN as the primary key and
biographical information in other fields. That information should be stored
ONCE.

You should also have a table of Accounts, with an AccountNumber as the primary
key, a SSN field as a link to the table of clients, account-specific
information, and *absolutely nothing* about the client.

Then you need a table of transactions, with a primary key (perhaps an
autonumber), an account number (*but no SSN*, you would link to that via the
accounts table), amount, transaction type, transaction date, etc.

You can use a Form based on a parent table with one or more Subforms based on
the child tables. The Subform's master/child link feature will fill in the
linking field (e.g. account number) without your needing to type it - or for
that matter, even *see* it.

Take a look at some of these tutorials for good examples:

Jeff Conrad's resources page:
http://www.accessmvp.com/JConrad/acc...resources.html

The Access Web resources page:
http://www.mvps.org/access/resources/index.html

Roger Carlson's tutorials, samples and tips:
http://www.rogersaccesslibrary.com/

A free tutorial written by Crystal:
http://allenbrowne.com/casu-22.html

A video how-to series by Crystal:
http://www.YouTube.com/user/LearnAccessByCrystal

MVP Allen Browne's tutorials:
http://allenbrowne.com/links.html#Tutorials

--

John W. Vinson [MVP]
  #3  
Old March 21st, 2010, 03:56 AM posted to microsoft.public.access.forms
Kc-Mass
external usenet poster
 
Posts: 362
Default Repeating data in table

As you start developing data bases one of the things you want to understand
is info security.
There is no reason to, and a lot of reasons not to, use a social security
number in a database.
Your band records your checks and deposits by your account number not by
SSN. They do that for good reasons. If SSNs are stored, displayed and
printed they and perhaps your self may be liable if the customer's identity
is compromised.

Read up on the subject and I think you will agree.

Kevin


"marine8105 via AccessMonster.com" u58684@uwe wrote in message
news:a54dab287f1a4@uwe...
I am trying to start simple and understand some of creating a dbase.
However,
I want to develop a dbase to handle bank statements. Each client (using
ssn)
can have several bank accounts. I have set up the form to gather the
client
info, bank info, and of course the account numbers. How do I create a
form
to allow me to enter deposits, other increases, checks, other decreases,
balance? I want to gather this information without having to input the
ssn
and account number each time.

I am looking to input the account number, which will tie to the client
ssn,
and then input the deposits and checks (along with the date of the
statement)
for each month over what might be years. I can then query using dates and
ssn.

Thank you for any help.

Mike ONeil

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/201003/1



 




Thread Tools
Display Modes

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 Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:27 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.