Create Query to display three fields for every record in a table.

A

AJRoad

Each customer is required to make a 10 percent deposit for each job. I need a
query to display Job ID, Customer ID, and deposit amount fields for every
record in my Jobs table. The fields that are included in my table are:Job ID
(primary key), Customer ID, Job Description, Job Status, Completion Date and
Quote. I would also like to format deposits with a dollar sign and two
decimal positions.

I appreciate your help,

AJRoad
 
D

Duane Hookom

You are asking how to display a currency value but don't seem to have any
fields in the table you described that store a currency value. I'm not sure
how anyone can help you.
 
A

AJRoad

Duane Hookom said:
You are asking how to display a currency value but don't seem to have any
fields in the table you described that store a currency value. I'm not sure
how anyone can help you.
 
D

Duane Hookom

Try as query like:

SELECT [Job ID], [Customer ID], Quote * 0.1 As DepositAmount
FROM Jobs;
 

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

Top