Thread
:
VBA Alternative to Vlookup
View Single Post
#
2
Posted to microsoft.public.excel.programming
Masked Coder[_4_]
external usenet poster
Posts: 1
VBA Alternative to Vlookup
Use search to get the correct value:
Dim Rnge As Range
Dim Hazard As String
Rnge = Worksheets(NAME).Range.Find(SEARCHVALUE, LookIn:=xlValues
LookAt:=xlWhole)
Hazard = Range(Rnge).Offset(y, x).Valu
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
Masked Coder[_4_]
View Public Profile
Find all posts by Masked Coder[_4_]