query

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

i have a table which has the following fields
Lender name, loan amount,

i want to have a query that gives me totals


Bank # loans $totl amt
ABC Bank 5 $1,500,000
 
Use a totals query:

SELECT Bank, Count([# loans]), Sum([$totl amt])
FROM TableName
GROUP BY Bank;
 

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