Logicwurks Home Page

Links To Excel Code Examples

Tracing VBA Statements
Range/Wkb/Wks Variables
Add Grand Totals Using Ranges
Using Range Offset Property
Using Range Find Method
ConvertCellAddressToRange
Set Conditional Formatting
Union Of Ranges
Parse Range Strings
Delete Duplicate Rows
Delete Rows And Columns
Worksheet Variables
TypeName And TypeOf
Loop Through Worksheets
Loop Through Open Workbooks
Form Button Magic
Command Button Magic
Add Worksheets Dynamically
ImportExternalWorksheets
Find Last Row Or Column
Copy And Paste Special
Copy To Specific Cell Types
Range Copy With Filter
ExcelFileOpenSaveClose
ExcelFileOpenSaveCSV
Open An Excel File
Open An Excel File w/Params
Open An Excel File On Web
Save A Workbook
Save A Workbook Using mso
Clone A Workbook
Test If WEB URL Exists
Parse Using Split Command
Using Classes in Excel
TypeStatementStructures
Color Management
Convert Cell Color To RGB
Sort Methods 2003 - 2010
Sort Alpha/Numeric In ASCII
Search Using Match Function
Search Using Vlookup Function
Search Using Xlookup Function
Using Find Instead of Vlookup
Remove String Non-Printables
Auto_Open And Auto_Close
Initialize Form At Open
Edit Numerics In UserForm
Load Combo And List Boxes
Floating Sheet Combo Boxes
Advanced User Form Coding
Excel Events
Worksheet Change Events
Binary Search Of Array
Typecast Constants
Excel Error Handling
Handling Optional Parameters
Data Validation Drop Downs
Insert Data Validation Sub
Read A Text File w/Handle
Write A Text File w/Handle
Read a Binary File w/Handle
Update a Binary File w/Handle
Binary File Copy and Update
Read A Text Fiile w/Script
Text File Processing Examples
Test For Exists Or Open
Splash Screen
Dynamically Load Formulas
PaymentStreamsByDate
Date Examples
Date Find Same Days
Convert Month To Number
Initialize Arrays
Load Arrays Using Evaluate
ChartsAndGraphsVBA
Redim An Array
Reassign Button Action
Timer Functions
Legacy Calendar Control
Excel 2010 Date Picker
Date Picker Alternative
Generate Multiple Worksheets
Read Access Data Into Excel
Send Outlook Email w/Attach
Copy AutoFilters To Sheets
Export A Text File
Get Windows User Name
VBA Format Statement
Manipulate Files via VBA
Dynamically Load Images
Loop Through Worksheet Objects
Loop Through Form Objects
Loop Through Files with DIR
Active-X Checkboxes
Add Forms Checkboxes Dynam
Paste Pictures Into Excel
Copy Pictures Sheet To Sheet
Copy Pictures Sheet To Sheet
Create Forms Buttons With VBA
Extract Filename From Path
Convert R1C1 Format to A1
Special Cells Property
Insert Cell Comments

Links To Access Code Examples

DAO Versus ADODB
SearchVBACodeStrings
Interface Excel With Access
Create Form Manually
Create Recordset With AddNew
Multi-Select List Boxes
Update Field(s) In A Recordset
Update Excel Pivot From Access
Import A Tab Delimited File
Export Excel FileDialog
Create Excel Within Access
Open Excel Within Access
Open Excel OBJ From Access
Format Excel From Access
Control Excel via Access VBA
On Error Best Practices
Import Tab Delim w/WinAPI
Initialize Global Variables
Using TempVars For Globals
Access Error Handling
Loop Through Form Controls
Insert A Calendar Control
Create A Filtered Recordset
Populate Combo Boxes
Bookmarks And Forms
Combo Box Multiple Sources
Passing Form Objects
Create VBA SQL Statements
Create Dynamic Queries
Display File Images On A Form
Manipulate Files via VBA
Manipulate Files via Scripting
Number Subform Records
Reference Subform Objects
Parse Delimited Fields
Parameterized Queries (VBA)
Manipulating QueryDefs In VBA
FindFirst On Combined Keys
Dlookup Command
Dlookup In Form Datasheet
Execute SQL Delete Records
Commit Form To Table
Report With No Data
Reference Form Objects
DSNLess Connections To MySQL
Print Active Form Record
Count Records in Linked Tables
Delete Empty Tables
Open Linked SQL Tables

 

Using the Range Find Statement Instead of VLookup

For the most advanced usage of the Range.Find method and speed comparisons to the VLookup command, Rich's new book provides both in-depth coverage and also a downloadable app that does speed comparisons and the pros and cons of using each search technique.

Power-Up Using Excel VBA Sorts and Searches

The program below starts at the top of a column and proceeds to find a match for each cell in the colummn until the last line of the column is processed. It searches a master table to locate matching values, and then takes action if a match is found. Sound like a VLookup? Yes it does.

The code below in Workbook1 (the Copy) opens a second workbook (Workbook 2, the Original). Then, each cell in Workbook1 in column A is used as a search argument to find a matching value in the entire Column A of Workbook2 (the Original). If a match is found, then the value in Column F of the matching row of Workbook2 is copied to Column F of Workbook1 in the row where the search value was initiated. Notice that the parameter LookAt:=xlWhole is used in the find statement. Without that parameter, it would find a substring within a regular string, which, in most cases, is not desirable. Omitting the parameter will allow searches of substrings within a string.

Program Code

Option Explicit

' ************************************************
' Variables For File Open Dialogue Box
' ************************************************
Public strDialogueFileTitle As String
Public strFilt As String
Public intFilterIndex As Integer
Public strCancel As String
Public strWorkbookNameAndPath As String
Public strWorkbookName As String
Public strWorksheetName As String

Public Sub UpdateCopyOfWorkbook()
Dim strWorkbookNameAndPathDemoOnly As String
Dim wkbCopyOfWorkbook As Workbook
Dim wkbOriginalWorkbook As Workbook
Dim wksWorksheetOfCopy As Worksheet
Dim wksWorksheetOfOriginal As Worksheet
Dim lngFirstRowOfOriginal As Long
Dim lngFirstRowOfCopy As Long
Dim lngLastRowOfOriginal As Long
Dim lngLastRowOfCopy As Long
Dim c As Variant
Dim i As Long

Set wkbCopyOfWorkbook = ThisWorkbook
Set wksWorksheetOfCopy = wkbCopyOfWorkbook.Sheets(1)
lngFirstRowOfOriginal = 2
lngFirstRowOfCopy = 2

' ****************************************************************************
' Set Up Filters For Which Files Should Show In The Open File Dialog Box
' ****************************************************************************
strFilt = "Excel Files (*.xls),*.xls," & _
          "Excel Files (*.xlsx),*.xlsx,"

' ****************************************************************************
' Set Up The Prompt In The Dialogue Box
' ****************************************************************************
intFilterIndex = 1
strDialogueFileTitle = "Select The Original Workbook"

' ****************************************************************************
' Present the Open File Dialogue To The User
' ****************************************************************************
Call OpenFileDialogue

' ****************************************************************************
' Notify The User If No File Was Successfully Opened
' ****************************************************************************
If strCancel = "Y" Then
    MsgBox ("An Open Error Occurred Importing Your File Selection")
    Exit Sub
End If

' ********************************************************
' Set Original Workbook and Worksheet Variables
' ********************************************************
Set wkbOriginalWorkbook = ActiveWorkbook
Set wksWorksheetOfOriginal = wkbOriginalWorkbook.Sheets(1)

' ********************************************************
' Find the Last Row Of the Copy
' ********************************************************
lngLastRowOfOriginal = wksWorksheetOfOriginal.Cells(Rows.Count, "A").End(xlUp).Row
lngLastRowOfCopy = wksWorksheetOfCopy.Cells(Rows.Count, "A").End(xlUp).Row

' ********************************************************
' Loop Through Each Value in Column A of the Copy and
' Find a Match to the Orignal in Column A.  When a match
' Is Found, Then Copy Cell F in the matching Row of the
' Original to Cell F in the Copy
' ********************************************************

For i = lngFirstRowOfCopy To lngLastRowOfCopy
    With wksWorksheetOfOriginal.Range(Cells(lngFirstRowOfOriginal, 1), Cells(lngLastRowOfOriginal, 1))
        Set c = .Find(wksWorksheetOfCopy.Cells(i, 1), LookIn:=xlValues, LookAt:=xlWhole)
        If Not c Is Nothing Then
            wksWorksheetOfCopy.Cells(i, 6).Value = wksWorksheetOfOriginal.Cells(c.Row, 6).Value
        End If
    End With

Next i

End Sub

Sub OpenFileDialogue()

' ************************************************
' Display a File Open Dialogue Box For The User
' ************************************************
strCancel = "N"
strWorkbookNameAndPath = Application.GetOpenFilename _
    (FileFilter:=strFilt, _
     FilterIndex:=intFilterIndex, _
     Title:=strDialogueFileTitle)
   
' ************************************************
' Exit If No File Selected
' ************************************************
If strWorkbookNameAndPath = "" Then
    MsgBox ("No Filename Selected")
    strCancel = "Y"
    Exit Sub
ElseIf strWorkbookNameAndPath = "False" Then
    MsgBox ("You Clicked The Cancel Button")
    strCancel = "Y"
    Exit Sub
End If

' ******************************************************
' Now That You Have The User Selected File Name, Open It
' ******************************************************
Workbooks.Open strWorkbookNameAndPath

End Sub