+ Reply to Thread
Results 1 to 2 of 2

SQL query in VBA

Hybrid View

  1. #1
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    SQL query in VBA

    In access I have the following make table query:

    SELECT Table1.Field1 INTO Table2
    WHERE Table1.Field1 Like "*SomeCriteria*";

    How can I repeat this in VBA?

    This does not work, something wrong with strings.

    Thanks


    
    Sub MakeTable()
    
    Dim strSQL As String
    
    strSQL = "SELECT Table1.Field1 INTO Table2 FROM Table1 WHERE Table1.Field1 Like "*SomeCriteria*""
    
    CurrentDb().Execute strSQL
    
    End Sub

  2. #2
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: SQL query in VBA

    SOLVED!

    
    strSQL = "SELECT Table1.Field1 INTO Table2 FROM Table1 WHERE Table1.Field1 Like '*SomeCriteria*'"

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1