View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mark[_22_] Mark[_22_] is offline
external usenet poster
 
Posts: 18
Default CopyFromRecordset - Is there a way to filter data that's copied?

Here's the code:

For iCol = 1 To fldCount
xlWs.Cells(1, iCol).Value = rst.fields(iCol - 1).Name
Next
xlWs.Cells(2, 1).CopyFromRecordset rst

I'd like to limit the data copied based on the contents of field 1 and
2 (which are named SALE and LOT in my source MS-Access query "rst").

I have a cell in the spreadsheet with the desired SALE and LOT. I
read these two text strings into the VB code, but don't know the
syntax to limit the CopyFromRecordset method (if it's even possible).

Thanks, Mark