I'm working on making a fill in the blank form for police reports. Basically, I need to be able to select a crime, fill in the appropriate names, amounts, etc., and then be able to print a report that has the information as if it was all typed out with no lines that are very long making it obvious that you just filled in the blank. I hope this makes sense.
My problem is that I don't know the best way to do this. I had thought of splitting the sections of text up between the "blanks" and then using a query to concatenate them together along with the names from the form. I think that this is how I should do it, but I don't know exactly how to do it. To be normalized, I think I would have to have a table of crimes and a table of text groups related to the table of crimes (a text group being the text between the "blanks"). So I could then make a query for the text groups for the selected crime. This produces two problems for me: 1. There can be multiple crimes listed and I don't know how to pull all of the text groups for all of the crimes. 2. I don't know how to concatenate records together (as opposed to fields which I can do). Is there a better way?
My problem is that I don't know the best way to do this. I had thought of splitting the sections of text up between the "blanks" and then using a query to concatenate them together along with the names from the form. I think that this is how I should do it, but I don't know exactly how to do it. To be normalized, I think I would have to have a table of crimes and a table of text groups related to the table of crimes (a text group being the text between the "blanks"). So I could then make a query for the text groups for the selected crime. This produces two problems for me: 1. There can be multiple crimes listed and I don't know how to pull all of the text groups for all of the crimes. 2. I don't know how to concatenate records together (as opposed to fields which I can do). Is there a better way?
Comment