Hi all,
I would appreciate if someone can point me in the right direction with my problem.
This is for a financial application, Access 2000
I have four tables - Application, Approved, Funded, and Canceled. Every new record starts out by being added to the Application table, from there it is either Approved or Canceled(Records can be put into the Canceled table at anytime). If it is Approved then it can go to the Funded table or it can be Canceled. Records can NOT go from Application to Funded, and once a record is Canceled it cannot be undone(unless done by mistake, but that's another problem)
Application table PK is other tables FK.
For each of these tables, one account number can have multiple entries with different data (all have primary keys)
Application Table -
Ex. PK # Account # F Name L Name Amount
1 1234 John Doe $2
2 1234 John Doe $5
3 433 Jane Doe $7
4 567 James Doe $10
Approved Table
PK FK # Account # F Name L Name Amount
1 1 1234 John Doe $2
2 2 1234 John Doe $5
3 3 433 Jane Doe $7
Funded Table
PK FK # Account # F Name L Name Amount
2 3 433 Jane Doe $7
Canceled Table
PK FK # Account # F Name L Name Amount
1 2 1234 John Doe $5
2 4 567 James Doe $10
What I want to do is to use a list box or a combo box to display all records based on a query (Account #). So John Doe would display twice with what his/her status is(What Table record is being pulled from)
EX - Account # F Name L Name Amount Status
1234 John Doe $2 Approved
1234 John Doe $5 Canceled
One record is then selected and it's information is displayed in textbox's so it can be modified
I hope I explained everything clearly.
TIA
Stubnski
I would appreciate if someone can point me in the right direction with my problem.
This is for a financial application, Access 2000
I have four tables - Application, Approved, Funded, and Canceled. Every new record starts out by being added to the Application table, from there it is either Approved or Canceled(Records can be put into the Canceled table at anytime). If it is Approved then it can go to the Funded table or it can be Canceled. Records can NOT go from Application to Funded, and once a record is Canceled it cannot be undone(unless done by mistake, but that's another problem)
Application table PK is other tables FK.
For each of these tables, one account number can have multiple entries with different data (all have primary keys)
Application Table -
Ex. PK # Account # F Name L Name Amount
1 1234 John Doe $2
2 1234 John Doe $5
3 433 Jane Doe $7
4 567 James Doe $10
Approved Table
PK FK # Account # F Name L Name Amount
1 1 1234 John Doe $2
2 2 1234 John Doe $5
3 3 433 Jane Doe $7
Funded Table
PK FK # Account # F Name L Name Amount
2 3 433 Jane Doe $7
Canceled Table
PK FK # Account # F Name L Name Amount
1 2 1234 John Doe $5
2 4 567 James Doe $10
What I want to do is to use a list box or a combo box to display all records based on a query (Account #). So John Doe would display twice with what his/her status is(What Table record is being pulled from)
EX - Account # F Name L Name Amount Status
1234 John Doe $2 Approved
1234 John Doe $5 Canceled
One record is then selected and it's information is displayed in textbox's so it can be modified
I hope I explained everything clearly.
TIA
Stubnski