T
Turtle Turtle
I'm creating a database that will print a paper form spanning 1 to
several pages depending on the number of records associated with an
individual. The formatting of this form is very specific. The form
I'm referring to can be seen in this PDF on page 80:
http://www.e-publishing.af.mil/shared/media/epubs/AFI11-202V2.pdf
Basically each person has a series of qualifications that appear
across multiple sheets. If the number of qualifications fits on one
page (that is 7 or less qualifications), then a final supervisor
element goes on the last line (the 8th slot). If the number of
qualifications exceeds 7 elements, then the first page is filled with
7 qualifications, the 8th is filled with a supervisor annotation on
the 8th slot. Any remainder qualifications are overflowed onto a
second page. If the number of qualifications is less than 7, then the
supervisor approval goes on the next slot after the last
qualification. Here's a text example:
=======Page 1==============
Slot 1 : Qualification 1
Slot 2 : Qualification 2
Slot 3 : Qualification 3
Slot 4 : Qualification 4
Slot 5 : Qualification 5
Slot 6 : Qualification 6
Slot 7 : Qualification 7
Slot 8 : Supervisor Approval
=======Page 2==============
Slot 1 : Qualification 1
Slot 2 : Qualification 2
Slot 3 : Supervisor
Approval
Each slot will be filled by data elements extracted from multiple
queries.
I've designed a few forms and reports in Access before but this one
perplexes me because the syntax of the data is slightly different. I
would need to divide the master query into different "pages" that
permits me to view 7 qualifications at a time while always filling up
Slot 8 or the last filled slot + 1 with the supervisor approval.
The last issue is that the formatting of this form needs to be almost
verbatim to the example in the PDF above. I've done some things with
forms and subforms but they tend to use more space than required and
cause formatting irregularities with large margins in subforms. It's
just not easy to design a form like this using sub-forms and nested
fields.
I don't even know where to start on this one. I'd like to get ideas
as to how to do this. Ideally I would store the data in a normalized
database and somehow populate a PDF of the blank form. This is
something I don't know how to do with VBA.
Thanks for any help or advice.
several pages depending on the number of records associated with an
individual. The formatting of this form is very specific. The form
I'm referring to can be seen in this PDF on page 80:
http://www.e-publishing.af.mil/shared/media/epubs/AFI11-202V2.pdf
Basically each person has a series of qualifications that appear
across multiple sheets. If the number of qualifications fits on one
page (that is 7 or less qualifications), then a final supervisor
element goes on the last line (the 8th slot). If the number of
qualifications exceeds 7 elements, then the first page is filled with
7 qualifications, the 8th is filled with a supervisor annotation on
the 8th slot. Any remainder qualifications are overflowed onto a
second page. If the number of qualifications is less than 7, then the
supervisor approval goes on the next slot after the last
qualification. Here's a text example:
=======Page 1==============
Slot 1 : Qualification 1
Slot 2 : Qualification 2
Slot 3 : Qualification 3
Slot 4 : Qualification 4
Slot 5 : Qualification 5
Slot 6 : Qualification 6
Slot 7 : Qualification 7
Slot 8 : Supervisor Approval
=======Page 2==============
Slot 1 : Qualification 1
Slot 2 : Qualification 2
Slot 3 : Supervisor
Approval
Each slot will be filled by data elements extracted from multiple
queries.
I've designed a few forms and reports in Access before but this one
perplexes me because the syntax of the data is slightly different. I
would need to divide the master query into different "pages" that
permits me to view 7 qualifications at a time while always filling up
Slot 8 or the last filled slot + 1 with the supervisor approval.
The last issue is that the formatting of this form needs to be almost
verbatim to the example in the PDF above. I've done some things with
forms and subforms but they tend to use more space than required and
cause formatting irregularities with large margins in subforms. It's
just not easy to design a form like this using sub-forms and nested
fields.
I don't even know where to start on this one. I'd like to get ideas
as to how to do this. Ideally I would store the data in a normalized
database and somehow populate a PDF of the blank form. This is
something I don't know how to do with VBA.
Thanks for any help or advice.