I have this formula which I use to find if a value exists in a range;
For Each cell In Sheet14.Range("B4:B23")
Set found = Sheet4.Columns("N").Find(what:=cell.Offset(0, 15), LookIn:=xlValues, LookAt:=xlWhole)
If found Is Nothing Then
Exit Sub
If cell.Offset(0, 2) = "Area" Or cell.Offset(0, 2)...