![]() |
find error
Hi,
I have this code and 2 problems; Sheets("calendar").Activate Dim foundcell As Range Dim this this = activecell.Value Debug.Print this Set foundcell = cells.find(what:=this, After:=activecell, LookIn:=xlFormulas, LookAt _ :=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _ True) If foundcell Is Nothing Then foundcell.Activate As a test i have typed cow in 2 cells, and run the code with the first "cow" cell selected. The code errors on the foundcell.activate, run time error '91', object variable or with block variable not set. It is obviously finding the second "cow" but will not select it. My second problem is if i change the cell vaues from cow to dates eg, 01/01/2008 the find does not work at all. Thanks, |
find error
Apologies, I have adjusted my code so it is now correct and I no
longer get the error; * * *If not foundcell Is Nothing Then * * *foundcell.Activate However why is my find not finding?! I can see plain as day the values are there however it is not finding them. |
find error
It is possible that the setting MatchCase:= True could be the culprit. If
your What is not the same case as the target cells, then it will not return them. "anon" wrote: Apologies, I have adjusted my code so it is now correct and I no longer get the error; If not foundcell Is Nothing Then foundcell.Activate However why is my find not finding?! I can see plain as day the values are there however it is not finding them. |
All times are GMT +1. The time now is 12:41 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com