Check if value exists in column in VBA
The find method of a range is faster than using a for loop to loop through all the cells manually. here is an example of using the find method in vba Sub Find_First() Dim FindString As String Dim Rng As Range FindString = InputBox(“Enter a Search value”) If Trim(FindString) <> “” Then With Sheets(“Sheet1”).Range(“A:A”) ‘searches … Read more