How to find text in a worksheet and saving the row & column number where it is first found - Excel VBA
How to find text in a worksheet and saving the row & column number where it is first found - Excel VBA Sub Find_Text_Get_ROWS_COlumns() Dim sText As String Dim FindRow As Range With ThisWorkbook.Sheets("Data") sText = "Hello" Set FindRow = .UsedRange.Find(What:=sText, LookIn:=xlValues) MsgBox FindRow.Row MsgBox FindRow.Column End With End Sub