Windows 7, Office 10, SQL Server
Data is in SQL Server DB table, and looks like this:
Account
Location
Date
Time
Quantity
There are fifty locations,(about 700,000 rows the data is updated throughout the day.
I need to create a form that displays two columns of information for todays data that looks like this:
Location Qyantity Location Quantity
Loc01 14 25 32
Loc02 12 26 18
.
.
.
Etc
Location name is in Location and so forth.
There is no stock form that displays data in this format. I first thought of trying to use two queries, first sums the quantities for the locations and the second would populate the form. But it (the second) only populates the first text box with the info re Location 01.
Next I thought of using two forms side by side, each with 25 rows, but decided that was bogus, that there should be a way of doing this.
Any Help would be appreciated.
Thanks in advance.
jpl
Data is in SQL Server DB table, and looks like this:
Account
Location
Date
Time
Quantity
There are fifty locations,(about 700,000 rows the data is updated throughout the day.
I need to create a form that displays two columns of information for todays data that looks like this:
Location Qyantity Location Quantity
Loc01 14 25 32
Loc02 12 26 18
.
.
.
Etc
Location name is in Location and so forth.
There is no stock form that displays data in this format. I first thought of trying to use two queries, first sums the quantities for the locations and the second would populate the form. But it (the second) only populates the first text box with the info re Location 01.
Next I thought of using two forms side by side, each with 25 rows, but decided that was bogus, that there should be a way of doing this.
Any Help would be appreciated.
Thanks in advance.
jpl