Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8283583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:46:54+00:00 2026-06-08T10:46:54+00:00

I have an Excel sheet containing table like data strSQL = SELECT S.FIELD_NAME1,S.FIELD_NAME2,S.FIELD_NAME3 from

  • 0

I have an Excel sheet containing table like data

strSQL = "SELECT S.FIELD_NAME1,S.FIELD_NAME2,S.FIELD_NAME3 from [SourceData$A1:IV6] S"

Dim cn as ADODB.Connection
Dim rs as ADODB.Recordset
cn.Open strCon
Set rs = CmdSqlData.Execute()
Worksheets("SourceData").Cells.ClearContent
Worksheets("AnswerData").Cells(2, 1).CopyFromRecordset rs

Results :
Only first row and other records are ignored.

I have tried below query .,

strSQL = "SELECT COUNT(*) from [SourceData$A1:IV6] S"

Which gives 5 as result.

Please let me know why other records not copied into recordset?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T10:46:57+00:00Added an answer on June 8, 2026 at 10:46 am

    Here’s a subroutine that successfully pastes a recordset.

    Note that the range it pastes to is the same size of the recordset via the intMaxRow and intMaxCol variables:

    Sub sCopyFromRS()
    'Send records to the first
    'sheet in a new workbook
    '
    Dim rs As Recordset
    Dim intMaxCol As Integer
    Dim intMaxRow As Integer
    Dim objXL As Excel.Application
    Dim objWkb As Workbook
    Dim objSht As Worksheet
      Set rs = CurrentDb.OpenRecordset("Customers", _
                        dbOpenSnapshot)
      intMaxCol = rs.Fields.Count
      If rs.RecordCount > 0 Then
        rs.MoveLast:    rs.MoveFirst
        intMaxRow = rs.RecordCount
        Set objXL = New Excel.Application
        With objXL
          .Visible = True
          Set objWkb = .Workbooks.Add
          Set objSht = objWkb.Worksheets(1)
          With objSht
            .Range(.Cells(1, 1), .Cells(intMaxRow, _
                intMaxCol)).CopyFromRecordset rs
          End With
        End With
      End If
    End Sub
    

    Using that example as a model, I’d try somehting like this for your code:

    strSQL = "SELECT S.FIELD_NAME1,S.FIELD_NAME2,S.FIELD_NAME3 from [SourceData$A1:IV6] S"
    
    Dim cn as ADODB.Connection
    Dim rs as ADODB.Recordset
    Dim intMaxCol as Integer
    Dim intMaxRow as Integer
    
    cn.Open strCon
    Set rs = CmdSqlData.Execute()
    intMaxCol = rs.Fields.Count
    '- MoveLast/First to get an accurate RecordCount
    rs.MoveLast 
    rs.MoveFirst
    
    If rs.RecordCount > 0 then
        '-thought you could put the MoveLast/First here but maybe not.
        intMaxRow = rs.RecordCount
        With Worksheets("AnswerData")
            .Range(.Cells(2,1),.Cells(intMaxRow+1,intMaxColumn)).CopyFromRecordset rs
        End With
    End If
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Excel sheet now I need to insert data from that sheet
Consider an Excel sheet with one column of bad data. We have a table
I have an excel sheet that I am wanting to extract data from and
I have an excel sheet laid out like so: +--id---+--val--+--timestamp--+ | 01 | 1.2
I have a very large Excel sheet converted from a 6000 page PDF file,
I have a dynamic range in an Excel sheet. DATA_TABLE =OFFSET(DATA!$B$3,0,0,COUNTA(DATA!$B:$B)-1,0) I want to
I have an Excel sheet and have this formula below. I would like to
I have an Excel sheet and have this formula below. I would like to
I have an excel sheet with values in them . I would like to
I have excel sheet with data which I want to get Levenshtein Distance between

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.