Look Up/Find using Macro

AliStott

New Member
Joined
Oct 11, 2006
Messages
14
Hi,

I am trying to imitate the excel LookUp function in a macro. I need to look up a contract code from one workbook in another to find the currency and rate for that code.

Using the VB Help files I wrote the following code which works, other than it doesn't give an EXACT match. For example, if the contract code is "BP", the marco will also find "FBP".

I don't think it helps that I didn't fully grasp the explanation on the help file. :confused:

Any suggestions greatly appreciated.

Many Thanks
Ali

Code:
Sub Lookup()

Set ExRateWkBk = ActiveWorkbook
ContractCode = "BP"

    With ExRateWkBk.Sheets("Transtrend").Range("A1:A50")
        Set CCode = .Find(ContractCode, LookIn:=xlValues)
        
        If Not CCode Is Nothing Then
            FirstAddress = CCode.Address
            Do
                Range(FirstAddress).Select
                ExRateCurr = ActiveCell.Offset(0, 3).Value
                ExRate = ActiveCell.Offset(0, 4).Value
                
                Set CCode = .FindNext(CCode)
            Loop While Not CCode Is Nothing And CCode.Address <> FirstAddress
        
        End If
    End With
    
    

End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I think you need to change:
Code:
Set CCode = .Find(ContractCode, LookIn:=xlValues)
to:
Code:
Set CCode = .Find(ContractCode, LookIn:=xlValues, LookAt:=xlWhole)

HTH :)
 
Upvote 0

Forum statistics

Threads
1,214,795
Messages
6,121,624
Members
449,041
Latest member
Postman24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top