I'm trying to limit the range using Columns("A18:A" & LRow) , however i'm getting an error. The below code works fine, however I'm wondering is it not possible to limit the range from a specific row?
,
SearchRange As Range
LRow as long
LRow = Range("A" & Rows.Count).End(xlUp).Row
Set...