I think I may have figured it out, then realized another problem, which I
will try to fix tomorrow. I added the new table, added it to the query
and
ran my report. That's when I realized my other issue. The same scenario
is
actually in two different areas of the database - the fields have
different
names, because different people are responsible for assigning the levels,
but
the point system is the same and they must be included in the report as
well.
So do I need to add the other field to the table, or have a separate
table?
I'm thinking a separate table...
MCK said:
I would like to add the column to the query, but I'm not sure how to
enter
the details.
My Access skills are on the rusty side, but getting better. Haven't used
the program in years and am now using it heavily in a new job.
:
Did you try add the new column in your query (report record source)?
Did it
work or not?
Are you asking about the table with 5 records? Assume you have 72
levels. Do
you want to create a huge expression using multiple Choose() or
Switch() or
IIF()? Do you want to maintain expressions or data?
--
Duane Hookom
MS Access MVP
--
I'm not sure I know exactly what you mean here. can you give me a
more
detailed explanation? Thanx.
:
It might be easiest to create a new column in your query:
Pts: Choose([Level] + 1, 0, 5, 10, ...)
You can then total this in your report.
A more robust solution would involve a table with 5 records
containing
the
level and points.
--
Duane Hookom
MS Access MVP
--
I hope that someone can help me. I have a database with a dropdown
listing
five different levels. The levels are numbered 0 - 4. Each level
has
a
corresponding point value. For example - 1=5 pts, 2=10 pts, etc.
The
points
are not contained in the database.
What I need to do is list the corresponding point value for the
level
and
then total the points at the end of the report (this I do know how
to
do).
Is there a simple way to do this within Access?
Thanks.