ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Foundcell (https://www.excelbanter.com/excel-programming/427331-foundcell.html)

Mike

Foundcell
 
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

Patrick Molloy[_2_]

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


Mike

Foundcell
 
Thanks for your help, Patrick.

"Patrick Molloy" wrote:

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



All times are GMT +1. The time now is 12:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com