473,750 Members | 2,669 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1477
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.goog legroups.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.goog legroups.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
2679
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 entries is aligned with the record's other entries, but subsequent entries are listed below the first record. Does anyone know how I can get rid of the annoying gap between the first and second entry for that one field?
2
2099
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 selections in a form and from those selections present them in a report. For example select a selection A,B, and C out of 9 possible choices. Then show them seperated by a comma in a field in the report. I also want the option of only selecting...
1
3775
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 report grouped by part group that lists the part numbers needed from that group. I have force new page after each group. This gives me a list of parts on each page. I want to print the needed drawings after the groups/list of parts. There are...
13
3924
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 file...whatever. I described my situation to the guy I'm doing work for and he did some research for me and came up with the following link. http://www.novapdf.com/ The part that should excite us Access developers is their SDK
1
5164
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 column across the top and Category down the left side. As data is entered, the number of unique dates increases. As a result the
1
16387
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 VBA to create SQL statements, then apply them. Now that I have been using Access/VBA for awhile, I am wondering if there is a simpler way to do this than coding these long sql statements. My report has a query as its record source. Can I just...
13
14941
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 show on only the top half of each page with whitepace at the bottom of each page. How can I get the detail to fill each page with my "half page height" report footer at the bottom of the last page? Any suggestions to solve this would be...
7
1764
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 these feilds =sum() these work fine. I also have in the detail feild Overall text boxes for the three feilds concerned I then have in the report footer =++ which give me a grand total for the report also works fine. I now need to have a more...
22
2735
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 I am hoping that for someone out there has. Visually it looks like the following: Product Name__Week 1__Week 2__Week 3__Week 4__Week 5__BudgetGWP__PriorGWP Product 1________45______56_______0_______0_______12_______300_________250__ Product...
0
8838
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9396
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9342
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8263
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6808
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4716
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4888
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3323
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2226
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.