I recieve 30+ spreadsheets everyday in Excel format. I am looking to find a way to add a set of rows together from all of the spreadsheets. Once I have them all together, I need to be able to sort by different fields to create reports. Does Anyone have any ideas?
In Access Link to each of the xls files
Then create a query that joins them all together
eg
Select * from Sheet1
Union All
Select * from Sheet2
Union All
Select * from Sheet3
Result - a read only query that shows all records in all the sheets
That can be sorted any way you like in another query.