Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm attempting to look at every value in a discontinuguous range (defined
name of "billraterange") and see if it matches any of the values in another range (defined name of "raterange"). If so, tell me the cell address in "billraterange". I'm open to other approaches beside the use of MATCH. Thanks for your help! Jason ************** Private Sub Worksheet_Deactivate() Dim ValRng As Range Dim Answer As Variant Set RateRng = Sheets("Input").Range("raterange") For Each ValRng In ThisWorkbook.Sheets("Input").Range("billraterange" ) Answer = Application.WorksheetFunction.Match(ValRng.Value, RateRang, 0) If IsError(Answer) Then MsgBox ValRng.Address End If Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
compare two or more ranges | Excel Worksheet Functions | |||
Compare ranges | Excel Worksheet Functions | |||
Using IF to compare ranges | Excel Worksheet Functions | |||
Compare Ranges | Excel Programming | |||
Compare ranges | Excel Programming |