VB Code:
If IsNull(Cells.Find(What:=Worksheets("Open Orders").Cells(i, 1), After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate) = True Then
Sheets("Open Orders").Cells(i, "N") = 0
Else
Sheets("Open Orders").Cells(i, "N") = ActiveCell.Offset(0, 34)
End If
Now, I'm assuming I'll have to change that IsNull to something else to be able to catch it, but I'm not sure what I have to change it to, or if that's even the right direction to go in.