I am currently working on a project that contains data on criminals. The tables I am working with list each defendant once for every crime or violation they commit. For example the table looks something like this:
Doe, John...DWI
Doe, John...grand theft auto
Doe, John...petit larceny
Because this evaluation is centered around jail populations, I need to list the individual only once followed by his original offense in the subsequent field and their additional charges below them, in a fashion similar to this:
Doe, John...DWI
->...grand theft auto
->...petit larceny
This way I can still keep track of true populations and their offenses without running into the problem of double-counting an individual. I am working with THOUSANDS of different individuals on a daily basis so simply going through a table and deleting it manually would take days to accomplish and be counterproductive. I have been working on solving this problem for the better par t of the week and now have decided to break down and ask the help of an expert, or at least someone with more knowledge than I. I hope this question was presented clearly enough with my examples that I gave, unfortunately the information is not for public consumption at this point so those examples will have to suffice for the time being.
Note:
while I will be running an analysis in a table, perhaps I could use a cascading/combo box in a form view to achieve what I want?
Doe, John...DWI
Doe, John...grand theft auto
Doe, John...petit larceny
Because this evaluation is centered around jail populations, I need to list the individual only once followed by his original offense in the subsequent field and their additional charges below them, in a fashion similar to this:
Doe, John...DWI
->...grand theft auto
->...petit larceny
This way I can still keep track of true populations and their offenses without running into the problem of double-counting an individual. I am working with THOUSANDS of different individuals on a daily basis so simply going through a table and deleting it manually would take days to accomplish and be counterproductive. I have been working on solving this problem for the better par t of the week and now have decided to break down and ask the help of an expert, or at least someone with more knowledge than I. I hope this question was presented clearly enough with my examples that I gave, unfortunately the information is not for public consumption at this point so those examples will have to suffice for the time being.
Note:
while I will be running an analysis in a table, perhaps I could use a cascading/combo box in a form view to achieve what I want?
Last edited: