Results 1 to 8 of 8

How to use wildcards in VLOOKUP

Threaded View

  1. #1
    Registered User
    Join Date
    10-07-2014
    Location
    UK
    MS-Off Ver
    2013
    Posts
    4

    How to use wildcards in VLOOKUP

    Hi all,

    I'm new to VBA and this forum and was wondering if you could advise me on how to correctly use a wildcard in VLOOKUP (or an alternative approach to the below - suggestions welcome).

    I have a list of transaction descriptions in Column C. What I am trying to do is categorise these transactions based on a number of keywords. Where i am stuck is that the below code looks up the whole value of Cells in Column C and not just whether the cell CONTAINS the key word. Any ideas?

    DATA EXAMPLE

    COLUMN C (DESCRIPTION): "Bank MTG Mort. payment"
    COLUMN G (WHERE RETURN VAL. SHOULD GO): MORTGAGE
    COLUMN H (KEYWORD TO SEE IF CONTAINED IN COLUMN C'S CELL): MTG
    COLUMN I (RETURN VALUE IF "MTG" EXISTS IN COLUMN C'S CELL): MORTGAGE

    Sub Categ()
        On Error Resume Next
        Dim Txn_Row As Long
        Dim Txn_Clm As Long
        Table1 = Sheet1.Range("C465:C480") ' Transaction Description Column
        Table2 = Sheet1.Range("H465:I466") ' Category Lookup Range
        Txn_Row = Sheet1.Range("G465").Row ' Start populating Category
        Txn_Clm = Sheet1.Range("G465").Column
        For Each Txn In Table1
          Sheet1.Cells(Txn_Row, Txn_Clm) = Application.WorksheetFunction.VLookup(Txn, Table2, 2, False)
          Txn_Row = Txn_Row + 1
        Next Txn
        
        MsgBox "Finished"
    End Sub
    Last edited by nomido14; 10-07-2014 at 06:43 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Re: VLOOKUP and wildcards
    By cadcrew in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-11-2006, 11:35 AM
  2. using wildcards in vlookup
    By Alex in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 03:05 AM
  3. using wildcards in vlookup
    By Alex in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  4. [SOLVED] vlookup & wildcards
    By Alex in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-05-2005, 10:05 PM
  5. [SOLVED] using wildcards in vlookup
    By Alex in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 06-14-2005, 12:05 PM

Tags for this Thread

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