473,405 Members | 2,310 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Report Help Needed

Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike

Nov 15 '06 #1
6 1465
The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.

Don't know if that will help you or not. I hope so!

Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike
Nov 15 '06 #2
Jeff - Hey thanks a bunch for taking a stab at it. After a little
light reading last night, I'm wondering if a report is the way to go.
One thing that I read said that "Option Groups" have no business being
on a report, but rather they are more at home on a "Form." I gather
that forms can not only be used to collect data, but also to present
it. Any thoughts on that?

Mike
Jeff L wrote:
The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.

Don't know if that will help you or not. I hope so!

Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike
Nov 16 '06 #3
Form are good for entering, updating and viewing data. They are not so
great when you need to print your or export to a file in a way that's
presentable. In those cases, a report would be much better.

I know you want to replicate your bubble sheet, but instead of a
88-option Option Group could you not just present the name of the
county in a field? Just a thought. I don't know how vital the
presentation is to you.

Takeadoe wrote:
Jeff - Hey thanks a bunch for taking a stab at it. After a little
light reading last night, I'm wondering if a report is the way to go.
One thing that I read said that "Option Groups" have no business being
on a report, but rather they are more at home on a "Form." I gather
that forms can not only be used to collect data, but also to present
it. Any thoughts on that?

Mike
Jeff L wrote:
The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.

Don't know if that will help you or not. I hope so!

Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:
>
I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?
>
Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.
>
Mike
Nov 16 '06 #4
Jeff - Presentation is key. Call it an obsession of mine, but looks
are important. Thus, I will probably pursue this for at least a while.

Mike

Jeff L wrote:
Form are good for entering, updating and viewing data. They are not so
great when you need to print your or export to a file in a way that's
presentable. In those cases, a report would be much better.

I know you want to replicate your bubble sheet, but instead of a
88-option Option Group could you not just present the name of the
county in a field? Just a thought. I don't know how vital the
presentation is to you.

Takeadoe wrote:
Jeff - Hey thanks a bunch for taking a stab at it. After a little
light reading last night, I'm wondering if a report is the way to go.
One thing that I read said that "Option Groups" have no business being
on a report, but rather they are more at home on a "Form." I gather
that forms can not only be used to collect data, but also to present
it. Any thoughts on that?

Mike
Jeff L wrote:
The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.
>
Don't know if that will help you or not. I hope so!
>
Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike
Nov 16 '06 #5
Hey Mike, a couple of advantages of reports are that they allow you to
summarize and group your data, like showing the sum of all deer taken by
county and by month. They are also good for laying stuff out well to print.
But in your case, since you aren't summarizing anything - just displaying
one record in a way that models the original input form, you could probably
do just fine doing it as a form.
-john

"Takeadoe" <mt********@msn.comwrote in message
news:11**********************@m7g2000cwm.googlegro ups.com...
Jeff - Hey thanks a bunch for taking a stab at it. After a little
light reading last night, I'm wondering if a report is the way to go.
One thing that I read said that "Option Groups" have no business being
on a report, but rather they are more at home on a "Form." I gather
that forms can not only be used to collect data, but also to present
it. Any thoughts on that?

Mike
Jeff L wrote:
>The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.

Don't know if that will help you or not. I hope so!

Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike

Nov 16 '06 #6
Thank you John. I really appreciate you taking time to write. I will
pursue the form route at this point.

Mike
John Welch remove remove wrote:
Hey Mike, a couple of advantages of reports are that they allow you to
summarize and group your data, like showing the sum of all deer taken by
county and by month. They are also good for laying stuff out well to print.
But in your case, since you aren't summarizing anything - just displaying
one record in a way that models the original input form, you could probably
do just fine doing it as a form.
-john

"Takeadoe" <mt********@msn.comwrote in message
news:11**********************@m7g2000cwm.googlegro ups.com...
Jeff - Hey thanks a bunch for taking a stab at it. After a little
light reading last night, I'm wondering if a report is the way to go.
One thing that I read said that "Option Groups" have no business being
on a report, but rather they are more at home on a "Form." I gather
that forms can not only be used to collect data, but also to present
it. Any thoughts on that?

Mike
Jeff L wrote:
The bubbles would work like an option group in Access. An option group
has many different possibilites, but only one option can be selected.
Perhaps one way to get yours to work would be to have a table,
tblCounties, where each county has an ID number. When you capture your
data, the county ID number would be saved with your other data. Your
option group on the report would have the 88 options, each option
having a value 1-88. The option group's control source would need to
be the County ID. Now when you open the report, the appropriate county
should be marked.

Don't know if that will help you or not. I hope so!

Takeadoe wrote:
Dear NG - I'm very new to Access and reports are completely foreign to
me. I was hoping that I could get some general guidance on how to
proceed with the following:

I've got a form (8.5x11") that is completed by the deer hunter when
s/he presents the animal at a check station for permanent tagging.
Data on the form is ultimately captured using OCR imaging software.
There are a dozen or so fields. Some are choice fields (fill in the
bubble) others are print fields where the hunter must enter data like
name, DOB, DL#, etc. Ultimately, all of the data end up in an database
(hence this email!). There are a number of occasions where I would
like to reproduce the form (information requests, evidence, etc).
However, since the images are not stored indefinitely, my thought was
to create a REPORT in Access that mimics the form exactly. I'm sure
I'm not the first to do this. In fact, I've read where you can import
an image of the form and use it as a "template" for placing fields on
your report. I can probably figure most of that out. My question for
the group is this. How do I deal with the choice fields? For
instance, there are 88 choices for county of harvest. All 88 counties
are listed on the form, each with a corresponding bubble. How in the
world do I tell Access which of those 88 bubbles needs to be darkened?

Of course, I'm not looking for someone to do my homework. Guidance
would be more than sufficient and greatly appreciated. If you could
point me in the direction of some examples, that would be fantastic.
If I've left you confused, I apologize. Please email me for
clarification.

Mike
Nov 16 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tom | last post by:
I have a report where one field tends to be rather lengthly and ends up being several lines long while another field has several short entries. The problem I have is that the first of the short...
2
by: Craig B. | last post by:
I am relativly new to access 2000 and am having some trouble with a report. I am not sure what I want to do is something I can do in access. I want to be able to choose from a combo box multiple...
1
by: shaqattack1992-newsgroups | last post by:
I know this is kind of a weird question, but is there anyway to give a subreport control of a main report? I posted my situation earlier about having drawings print out after a group. I have a...
13
by: salad | last post by:
Hi Guys: I was stuck. I needed to send a report to a file. My beautiful report(s) in Access were going to require loss of formatting with RTFs, a PITA in WordMailMerge, sending it as a text...
1
by: Brad | last post by:
Thanks for taking the time to read my question. I have a table of data that has Date, Data and Category. I need to show, in a report, each Categories Data by Date. The Date has to be it's own...
1
by: lorirobn | last post by:
Hi, I have a report that works just fine. Now I would like to add the capability to choose selection criteria to limit what is displayed. I created several reports that do this, but they used...
13
by: Greg | last post by:
Most suggestions on this topic recommend to use a page footer and make it visible only on the last page. My problem is that the footer is half of the height of a page which means the detail would...
7
by: Bobh | last post by:
I am trying to figure out some code for a report issue; I have an employee who has a incentive scheme. I have a report showing various income amounts and in the report footer I vae totals for...
22
kcdoell
by: kcdoell | last post by:
I have been trying for the last several days to create a query that will give me all of the values I need to create a report. Background: The report is different than anything I have done but...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.