D
DPHarr
Access 2000, on WinXP
I'll use the shortened form, and ask if it's possible.
I have a table, "Clients"
(pk)eID%, First$, Last$, Atty%, Applications(?)
Atty field is a long, which links to Atty Table, and references a specific
atty.
Now, Atty table, looks like:
First$, Last$, (pk)Barcard%, Atty2%, Atty3%
What I'm hoping to accomplish here, is that Atty2 can look up another
attorney's info. For example.
(client table)
004,Joy,Ellum,000001,?
(atty table)
Steve, Jobs,000001,000002,000003,
Mark, Hanson, 000002,,,
Jack, Jackson, 000003,,,
If you were familiar with OOPs or vba, or vb, and I set a var to Joy's
entry, it'd look something similar...
Client(004).first = "Joy"
Client(004).Atty = 000001
Client(004).Atty.first = "Steve"
Client(004).Atty.Atty2 = 000002
Client(004).Atty.Atty2.First = "Mark"
Client(004).Atty.Atty3 = 000003
Client(004).Atty.Atty3.Last = "Jackson"
So that an Attorney can have a 'secondary' and 'tertiary' attorney for that
specific clients case. Is it possible to make something like this happen?
Where Atty2 field of AttyTable can reference and search it's own table of
info (is this it's own database?)
I realize, that if i pointed Atty(00003).atty2 = 000001, it would cause a
pretty good loop, but only as far down as I wanted to go.
That's only one question. I'm new to Access, and it's currently competing
against MySQL as far as which database to use for a project. I opted to try
Access first because I had it with the office CD.
When I tried making the table lastnight, and making Atty2 a lookup field
based off the #, it wouldn't let me.
Question 2: Is it possible to have a dynamic array on record, of Longs?
TIA,
DPharr
I'll use the shortened form, and ask if it's possible.
I have a table, "Clients"
(pk)eID%, First$, Last$, Atty%, Applications(?)
Atty field is a long, which links to Atty Table, and references a specific
atty.
Now, Atty table, looks like:
First$, Last$, (pk)Barcard%, Atty2%, Atty3%
What I'm hoping to accomplish here, is that Atty2 can look up another
attorney's info. For example.
(client table)
004,Joy,Ellum,000001,?
(atty table)
Steve, Jobs,000001,000002,000003,
Mark, Hanson, 000002,,,
Jack, Jackson, 000003,,,
If you were familiar with OOPs or vba, or vb, and I set a var to Joy's
entry, it'd look something similar...
Client(004).first = "Joy"
Client(004).Atty = 000001
Client(004).Atty.first = "Steve"
Client(004).Atty.Atty2 = 000002
Client(004).Atty.Atty2.First = "Mark"
Client(004).Atty.Atty3 = 000003
Client(004).Atty.Atty3.Last = "Jackson"
So that an Attorney can have a 'secondary' and 'tertiary' attorney for that
specific clients case. Is it possible to make something like this happen?
Where Atty2 field of AttyTable can reference and search it's own table of
info (is this it's own database?)
I realize, that if i pointed Atty(00003).atty2 = 000001, it would cause a
pretty good loop, but only as far down as I wanted to go.
That's only one question. I'm new to Access, and it's currently competing
against MySQL as far as which database to use for a project. I opted to try
Access first because I had it with the office CD.
When I tried making the table lastnight, and making Atty2 a lookup field
based off the #, it wouldn't let me.
Question 2: Is it possible to have a dynamic array on record, of Longs?
TIA,
DPharr