Thread: Foundcell
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Patrick Molloy[_2_] Patrick Molloy[_2_] is offline
external usenet poster
 
Posts: 1,298
Default Foundcell

change this

If FoundCell Is Nothing Then


to this

If NOT FoundCell Is Nothing Then


"Mike" wrote:

Hi. In the following code I have an "If" statement if the cell is not found.
How would I rephrase this if statement to execute if the cell was not found?

With Worksheets("Issues Only").Range("b:b")
Set FoundCell = .Cells.Find(What:=pn2, _
After:=.Cells(1), LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False, SearchFormat:=False)
End With
If FoundCell Is Nothing Then


rownum = FoundCell.Row
issued = issued + Cells(rownum, 4)
issdoll = issdoll + Cells(rownum, 5)
End If