Dan,
Can you post a sample of your code? 5 minutes seems very excessive
to process such a small number of items.
> Hi all,
> I have two spreadsheets that I import into two seperate tabs in my
[quoted text clipped - 11 lines]
> Ps. I wanted to do this project in access, but was denied. Has to be
> in excel.
If you want to do joins on your data, you should be able to do it with
Data=>Get External Data and then query your workbook.
I believe you can do this even internal to the source workbook, but
certainly can do it from another workbook.
Also, you can look at Chip Pearson's site for working with this/similar
situations
http://www.cpearson.com/excel/duplicat.htm
or for Code, look at this Post by KeepItCool
http://groups.google.com/group/microsoft.public.excel.programming/msg/7e348d43cf
5073a2?dmode=source&hl=en

Signature
Regards,
Tom Ogilvy
> Hi all,
> I have two spreadsheets that I import into two seperate tabs in my
[quoted text clipped - 11 lines]
> Ps. I wanted to do this project in access, but was denied. Has to be
> in excel.
Dan McCollick - 20 Jan 2006 17:01 GMT
Thanks for the replies so far. Tom, I saw your post linking to ADO.
And this seems much more familiar to me(as i could use sql). One
problem I am encountering so far. I can not return a recordset
containing mulitple records?? here is my code so far
Private Sub getData(sourceFile As String, SourceRange As String,
TargetRange As Range, IncludeFieldNames As Boolean, TypeofClass As
String)
Dim TargetCell As Range
Dim i As Integer
dbConnectionString = "DRIVER={Microsoft Excel Driver (*.xls)};" &
"ReadOnly=1;DBQ=" & sourceFile
Set dbConnection = New ADODB.Connection
On Error GoTo InvalidConnection
dbConnection.Open dbConnectionString 'open the database
'Set rs = dbConnection.Execute("[" & SourceRange & "]")
Dim rstTables As ADODB.Recordset
Set rstTables = dbConnection.OpenSchema(adSchemaTables)
Set rs = New ADODB.Recordset
SQL = "Select * FROM " & SourceRange
rs.Open SQL, dbConnection
Set TargetCell = TargetRange.Cells(1, 1)
If IncludeFieldNames Then
For i = 0 To rs.Fields.Count - 1
TargetCell.Offset(0, i).Formula = rs.Fields(i).Name
Next i
Set TargetCell = TargetCell.Offset(1, 0)
End If
If TypeofClass = "Prosight" Then
While Not rs.EOF
TargetCell.Offset(0, 0).Formula = rs.Fields(1).Value
TargetCell.Offset(0, 1).Formula = rs.Fields(10).Value
TargetCell.Offset(0, 2).Formula = rs.Fields(0).Value
TargetCell.Offset(0, 3).Formula = rs.Fields(31).Value
rs.NextRecordset
Wend
End If
'TargetCell.CopyFromRecordset rs
Exit Sub
InvalidConnection:
MsgBox Err.Description, vbExclamation, "Incorrect Data"
End Sub
The Err.Description = "Current Provider does not support returning
mulitple recordsets from a single execution"
Dan McCollick - 20 Jan 2006 19:34 GMT
Update: My error was in using rs.nextrecordset. I should have been
using rs.movenext(to cylce to next record within the recordset).