- Local time
- Today, 15:23
- Joined
- Feb 19, 2013
- Messages
- 17,750
Have you tried the other suggestions?
In addition, if you are now making a table you could try using a bit of vba to insert each company in turn. I think you will find the sum of the individual companies will be less than doing the whole thing in one go.
Looking at it another way - Just looking at your data, how often do you have missing dates in tblPrices? It may be more efficient to populate the missing dates so you can join the two tables on company and date (perhaps with an additional field to indicate this is a 'calculated' record)
What sort of backtesting would you plan to do on such a recordset once it is created, thinking about that might point the way to reduce the recordset required.
In addition, if you are now making a table you could try using a bit of vba to insert each company in turn. I think you will find the sum of the individual companies will be less than doing the whole thing in one go.
Looking at it another way - Just looking at your data, how often do you have missing dates in tblPrices? It may be more efficient to populate the missing dates so you can join the two tables on company and date (perhaps with an additional field to indicate this is a 'calculated' record)
What sort of backtesting would you plan to do on such a recordset once it is created, thinking about that might point the way to reduce the recordset required.