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 7182133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:42:19+00:00 2026-05-28T17:42:19+00:00

I need a macro to do a vLookup on a sheet (~50K records) against

  • 0

I need a macro to do a vLookup on a sheet (~50K records) against a database of over one million keywords.

Will the process become faster if I use MS Access 2007 as the database to vLookup it?
Is there any other way to make this process faster by using a different database etc.?

  • 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-05-28T17:42:20+00:00Added an answer on May 28, 2026 at 5:42 pm

    If you already have these keywords stored in Excel, it is worth looking a ADO to read the words as a table. This is a quick example, but it is also simple enough to join the list of words to be looked up in an INNER or LEFT JOIN and find the missing and matching words. This can also be done if the keywords are stored externally in a database by using in-line connection strings.

    Dim cn As Object
    Dim rs As Object
    Dim strFile As String
    Dim strCon As String
    Dim strSQL As String
    Dim s As String
    Dim i As Integer, j As Integer
    
    ''This is not the best way to refer to the workbook
    ''you want, but it is very convenient for notes
    ''It is probably best to use the name of the workbook.
    
    strFile = ActiveWorkbook.FullName
    
    ''Note that if HDR=No, F1,F2 etc are used for column names,
    ''if HDR=Yes, the names in the first row of the range
    ''can be used. 
    ''
    ''This is the ACE connection string, you can get more
    ''here : http://www.connectionstrings.com/excel
    
    strCon = "Provider=Microsoft.Jet.OLEDB.12.0;Data Source=" & strFile _
        & ";Extended Properties=""Excel 12.0;HDR=Yes;IMEX=1"";"
    
    ''Late binding, so no reference is needed
    
    Set cn = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    
    cn.Open strCon
    
    ''Watch out for case sensitivity
    strSQL = "SELECT [ColumnName] " _
           & "FROM [Sheet1$] " _
           & "WHERE ColumnName ='" & strWord & "'"
    
    rs.Open strSQL, cn, 3, 3
    
    MsgBox rs.GetString
    
    ''Tidy up
    rs.Close
    Set rs=Nothing
    cn.Close
    Set cn=Nothing
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to have a macro that will do some formatting. I need
I need to generate an Excel sheet from the data fetched from a database
I need a macro that will create a column called Store. Then, the macro
Using C++, I need a macro that will replace a function to do nothing
I need a macro which helps to output the given parameter's name and value.
I need to write a macro to clean up an Excel document. I have
I need to write a macro that operates on bitarray looking like this: array[0]
I need help doing the following: a preprocessor macro label(x) shall output #x, e.g.,
I need a definition for a macro-like string in php which would literally be
I am writing a macro in Excel where I need to get a substring

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.