T
Tina Hudson
Good afternoon,
I am working on a system to track the location of children in custody. I
have a table that contains all the people (tblPerson) in the system. I have
other tables for just child info (tblChild) and family member (tblFamily)
info. I also have a table to keep track of their location, including the
data for each change in location (tblLocation). Each of these tables is
properly related (I think!) to the other, by way of "Family_ID". I also have
fields identifying their relationship, i.e., grandmother, grandfather, etc.
The forms to establish relationships work great.
The child and family member info are entered before a location can be
entered.
Here is my quandry: (1) a caretaker can either be a 2 parent household or
single parent household, (2) made up of family members or non-family members.
Currently, I am tracking the non-family members in tblFamily (but I really
don't like it here since they aren't family, and these non-family membes can
end up being caretakers for more than one family and I want to be able to
have on a report the names of the children for each caretaker household).
Okay, to solve (1) I think I should be able to concatenate 2 records into a
single row for the user to select in a combo box. Can I just check for
duplicates in "Add1" and "city" and then combine them as one record? Should
I then store this record in a new table (tblProvider)? Any suggestions?
For (2), the user is going to have to enter info for the non-family member
caretaker (with this info being stored in another table (tblProvider)), and
not relate this caretaker to any specific family. Then, somehow get this new
caretaker info to show up in the combo box (along with all the other possible
non-family caretakers, is what I was thinking). I could have a bound or
unbound control for the user to select to identify the careaker as either
"relative" or "non-relative" and depending upon what the user chose, the
appropriate list of names would appear in the combo box. I can have the user
enter non-family member info as a "household, rather than separate names for
both male and female caretakers.
Well, I hope this is challenging enough. Thanks in advance for any help or
suggestions.
I am working on a system to track the location of children in custody. I
have a table that contains all the people (tblPerson) in the system. I have
other tables for just child info (tblChild) and family member (tblFamily)
info. I also have a table to keep track of their location, including the
data for each change in location (tblLocation). Each of these tables is
properly related (I think!) to the other, by way of "Family_ID". I also have
fields identifying their relationship, i.e., grandmother, grandfather, etc.
The forms to establish relationships work great.
The child and family member info are entered before a location can be
entered.
Here is my quandry: (1) a caretaker can either be a 2 parent household or
single parent household, (2) made up of family members or non-family members.
Currently, I am tracking the non-family members in tblFamily (but I really
don't like it here since they aren't family, and these non-family membes can
end up being caretakers for more than one family and I want to be able to
have on a report the names of the children for each caretaker household).
Okay, to solve (1) I think I should be able to concatenate 2 records into a
single row for the user to select in a combo box. Can I just check for
duplicates in "Add1" and "city" and then combine them as one record? Should
I then store this record in a new table (tblProvider)? Any suggestions?
For (2), the user is going to have to enter info for the non-family member
caretaker (with this info being stored in another table (tblProvider)), and
not relate this caretaker to any specific family. Then, somehow get this new
caretaker info to show up in the combo box (along with all the other possible
non-family caretakers, is what I was thinking). I could have a bound or
unbound control for the user to select to identify the careaker as either
"relative" or "non-relative" and depending upon what the user chose, the
appropriate list of names would appear in the combo box. I can have the user
enter non-family member info as a "household, rather than separate names for
both male and female caretakers.
Well, I hope this is challenging enough. Thanks in advance for any help or
suggestions.