I have 2 reports questions:
1. I would like to have a field in the detail section of a report which displays the sequence number (seq #) of the item in the detail section. For example:
=====================
seq # Item
1 apples
2 oranges
3 pears
=====================
I set up the count function on one of the fields in the query for this report but it displays "1" for each seq. # listed in the detail section. How can I set this up so that it displays in the example above?
2. I have many fields on my report but this report is to be filled out by forms in the database as certain work operations are completed and entered into the database. How can I only dislay the information for the fields that have been populated on the report and hide all of the ones that are not yet populated?
In other words, instead of displaying:
==================================================
seq # | Item | picking | washing | sorting | packaging
--------|---------|---------|-----------|----------|---------
1 | apples | Yes | | |
--------|---------|---------|-----------|----------|----------
2 |oranges| Yes | Yes | |
--------|---------|---------|-----------|----------|----------
3 |pears | Yes | Yes | |
--------|---------|---------|-----------|----------|----------
==================================================
I wish to display:
========================================
seq # | Item |picking | washing
--------|---------|---------|---------|
1 | apples | Yes | |
--------|---------|---------|---------|
2 |oranges| Yes | Yes |
--------|---------|---------|---------|
3 |pears | Yes | Yes |
--------|---------|---------|---------|
========================================
Any strategies on how to hide the unused fields and boxes?
Thanks
1. I would like to have a field in the detail section of a report which displays the sequence number (seq #) of the item in the detail section. For example:
=====================
seq # Item
1 apples
2 oranges
3 pears
=====================
I set up the count function on one of the fields in the query for this report but it displays "1" for each seq. # listed in the detail section. How can I set this up so that it displays in the example above?
2. I have many fields on my report but this report is to be filled out by forms in the database as certain work operations are completed and entered into the database. How can I only dislay the information for the fields that have been populated on the report and hide all of the ones that are not yet populated?
In other words, instead of displaying:
==================================================
seq # | Item | picking | washing | sorting | packaging
--------|---------|---------|-----------|----------|---------
1 | apples | Yes | | |
--------|---------|---------|-----------|----------|----------
2 |oranges| Yes | Yes | |
--------|---------|---------|-----------|----------|----------
3 |pears | Yes | Yes | |
--------|---------|---------|-----------|----------|----------
==================================================
I wish to display:
========================================
seq # | Item |picking | washing
--------|---------|---------|---------|
1 | apples | Yes | |
--------|---------|---------|---------|
2 |oranges| Yes | Yes |
--------|---------|---------|---------|
3 |pears | Yes | Yes |
--------|---------|---------|---------|
========================================
Any strategies on how to hide the unused fields and boxes?
Thanks