do you have any clue on why the following code does not work?
begin=1
Set FoundCell = ws.Range(Cells(begin,6),Cells(200000,6)).Find(What:=Content(i))
It says no Object found, if instead of Cells(begin,6),Cells(200000,6)
I put "F:F"
it does work. But I need to give dynamically the starting point of search (i.e. begin
)