I have a large database with two relevant fields that I am attempting to extract and summarise.
eg
Area Volume
SW 10000
NE 8000
NW 7500
SE 12000
SW 9000
SW 8000
I would like to summarise the data in an array, with Area in rows and Volume in Columns. The Volume is to be grouped in ranges (eg 8000<Volume<9000) I want to record the number of records within an Area and Volume range with the count function eg
<=8000 8001<10000 >=10001
NW 1
NE 1
SW 0 2 1
SE 1
I have found a way running a query for each Volume range, and then a Query on the Queries by Area, however this is v tedious and not efficient
I am new to SQL/Access and have no knowledge of syntax etc. I would have prefered to do this in Excel, but volume of data being used means this is not practical. I am thinking of some form of do loop/if statement
Any advice very welcome
Thanks in advance
R
eg
Area Volume
SW 10000
NE 8000
NW 7500
SE 12000
SW 9000
SW 8000
I would like to summarise the data in an array, with Area in rows and Volume in Columns. The Volume is to be grouped in ranges (eg 8000<Volume<9000) I want to record the number of records within an Area and Volume range with the count function eg
<=8000 8001<10000 >=10001
NW 1
NE 1
SW 0 2 1
SE 1
I have found a way running a query for each Volume range, and then a Query on the Queries by Area, however this is v tedious and not efficient
I am new to SQL/Access and have no knowledge of syntax etc. I would have prefered to do this in Excel, but volume of data being used means this is not practical. I am thinking of some form of do loop/if statement
Any advice very welcome
Thanks in advance
R