Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello
This is my first Excel VBA to publish in the forum and happy to join the Excel VBA family. Excel vlookup function is very useful in many applications. I develop a VBA to make Vlookup run faster if you havew many rows to lookup , please try the code. I appreciate your comment. Option Explicit Dim finalrow As Integer Dim Mysheet As String Dim mycolumn As Long Dim Myrange As String Dim mycount As Long Dim i As Integer Dim mylookup As Variant Dim mystring As String Dim myvalue As Long Sub Vlookup() mycolumn = Application.InputBox("Please enter the lookup column number", Type:=1) myvalue = Application.InputBox("Please enter the column number you want to place your lookup up result ", Type:=1) Mysheet = InputBox("Please enter lookup worksheet name", "WorksheetName", Default) Myrange = InputBox("Please enter lookup range", "Range", Default) mycount = Range(Myrange).Columns.Count On Error Resume Next Columns(myvalue).Insert Shift:=xlToRight finalrow = Cells(65536, mycolumn).End(xlUp).Row For i = 1 To finalrow mystring = (Cells(i, mycolumn)) mylookup = Application.Vlookup((mystring), Worksheets(Mysheet).Range(Myrange), mycount, False) Cells(i, myvalue).Value = mylookup Next i End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Vlookup HELP | Excel Discussion (Misc queries) | |||
VLOOKUP Conversion from Excel 2003 to Excel 2007 | Excel Worksheet Functions | |||
Using Vlookup in Excel | New Users to Excel | |||
vlookup?? trying to get Excel to tell me a value | Excel Programming | |||
VBA excel + Forms : Vlookup on database by form / VBA excel +formulaire : rechercheV sur base de données viaformulaire | Excel Programming |