Create Query Showing Totals By Price Band

chris-evans

Board Regular
Joined
Feb 19, 2002
Messages
73
Hi I have a table listing all transactions and there are hundreds of thousands of rows (each row represents a transaction). What i'd like to do is create a query that summarises the total of transactions by buckets of values e.g.

<$10
>$10 and <$25
>$50

etc. Any guidance on how to do this would be appreciated.

Thanks

Chris
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Create three queries

SELECT Sheet1.ID1, Sheet1.Amount
FROM Sheet1
WHERE (((Sheet1.Amount)<10));


SELECT Sheet1.ID1, Sheet1.Amount
FROM Sheet1
WHERE (((Sheet1.Amount) Between 10 And 24));


SELECT Sheet1.ID1, Sheet1.Amount
FROM Sheet1
WHERE (((Sheet1.Amount)>25));


With each one open in datasheet view, click on the Sigma (looks like a large E) Symbol and then select Sum in the drop down on the data sheet.
 
Upvote 0

Forum statistics

Threads
1,221,813
Messages
6,162,126
Members
451,743
Latest member
matt3388

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top