Как получить диапазон или номер строки, в которой находится значение в следующем коде?В разделе If я хочу получить номер строки вместо перехода к значению, как здесь, в этом фрагменте кода
With wsSource.Range("A:A") 'searches all of column A
Set Rng1 = .Find(What:=FindString, _
After:=.Cells(.Cells.Count), _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False)
If Not Rng1 Is Nothing Then
Application.Goto Rng1, True 'value found
Else
MsgBox "Nothing found" 'value not found
End If
End With