TurnipEntropy
New member
- Local time
- Today, 03:42
- Joined
- Aug 9, 2012
- Messages
- 3
So I'm not entirely sure I actually need a self-referencing table per se, as much as a table that takes data from multiple fields and combines it in another field in the same table. That's all vague, so I'm going to go into exactly what I'm trying to do.
I have a field that has redundant information with other fields. Redundant in the sense that it'll say Date-Location ID-individual ID number-file ID, and I already have fields that contain that information. At first I made a form that just had the user entering that information twice. My boss wants me to get rid of that redundancy on the user's end.
So what I have to do is create a form that looks kind of like one in which you insert your phone number ( blank box-blank box-blank box-blank box).
Here's the tricky part. Let's say I enter in that series of boxes on the form 23APR2012-AEGF-0251-7YHA. When I insert that data from the form into table1 of the database, I need Field1 to be all of that information, Field 2 to pull AEGF from a drop down menu linked to table 2, and field 3 to pull just 7Y (out of 7YHA) from a drop down menu linked to table 3.
That means field 1 is straight text, field 2 is a lookup field, and so is field 3. I'm hoping this is a many-to-many relationship in the same table, because that's the only thing I can think of that might work here. This is in the modules and VBA section because I figure that might not be the case and I'll have to do some coding.
Thank you everyone,
TE
I have a field that has redundant information with other fields. Redundant in the sense that it'll say Date-Location ID-individual ID number-file ID, and I already have fields that contain that information. At first I made a form that just had the user entering that information twice. My boss wants me to get rid of that redundancy on the user's end.
So what I have to do is create a form that looks kind of like one in which you insert your phone number ( blank box-blank box-blank box-blank box).
Here's the tricky part. Let's say I enter in that series of boxes on the form 23APR2012-AEGF-0251-7YHA. When I insert that data from the form into table1 of the database, I need Field1 to be all of that information, Field 2 to pull AEGF from a drop down menu linked to table 2, and field 3 to pull just 7Y (out of 7YHA) from a drop down menu linked to table 3.
That means field 1 is straight text, field 2 is a lookup field, and so is field 3. I'm hoping this is a many-to-many relationship in the same table, because that's the only thing I can think of that might work here. This is in the modules and VBA section because I figure that might not be the case and I'll have to do some coding.
Thank you everyone,
TE