Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Marina,
You don't need VB for this it can be done with a formula but if you want code Sub sonic() Dim Found As Long, x As Long, LastRow As Long Dim ResPonse As String ResPonse = Trim(InputBox("Enter value to search for")) LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row For x = LastRow To 1 Step -1 If UCase(Trim(Cells(x, 1).Value)) = UCase(ResPonse) Then Found = Found + 1 If Found = 2 Then MsgBox "second occurrence of " & ResPonse & " in row " & x Exit Sub End If End If Next MsgBox "Search string not found" End Sub Mike "Marina" wrote: How to write VBA code to find the row location of a second duplicate value in a list( ie a second "apple" in a list of fruits name) ? . |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lookup duplicate value | Excel Discussion (Misc queries) | |||
Lookup a location # with multiple dates | Excel Worksheet Functions | |||
Fixed file location for lookup formula | Excel Worksheet Functions | |||
Duplicate Lookup | Excel Programming | |||
lookup cell location | Excel Programming |