Question : How can I get CopyFromRecordset to transpose the columns to rows

I have more columns in my database then excell 2003 allows how can I use the CopyFromRecordset method to transpose the columns to rows

Answer : How can I get CopyFromRecordset to transpose the columns to rows

Sorry, forgot to add 1 to the dimensions:

1:
Cells(2, 5).Resize(ubound(vardata, 1) + 1, ubound(vardata, 2) + 1).Value = varData
Random Solutions  
 
programming4us programming4us