Access Report Code

  • Thread starter Thread starter Tim Eagle
  • Start date Start date
T

Tim Eagle

I have a report. On the report are fields brought in from a query which is
pulling the fields from a table, common knowledge, on the report I want to
know the code to create a dollar amount for grades. For example, A shows up
on the report and for each A, in another column, I want a dollar amount
assigned, for example A=$7.00, B=$5.00, etc, etc. How can I accomplish this?
Thanks.

Tim Eagle
 
Build a reference table with Grade and Dollar fields.
Use this query --
SELECT Data.Question, Data.GRADE, Grades.Dollar
FROM Data LEFT JOIN Grades ON Data.GRADE = Grades.Grade;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top