So I've been trying without much success to integrate isnull into my Index/Match vba code.
Basically, the program needs to find a Date in column C, this date was presaved in a variable called YRow.
Then it needs to check whether a corresponding row in Column E is blank.
After that, it'll take action as necessary.
I've been playing with this, but no dice:
Any ideas?
Basically, the program needs to find a Date in column C, this date was presaved in a variable called YRow.
Then it needs to check whether a corresponding row in Column E is blank.
After that, it'll take action as necessary.
I've been playing with this, but no dice:
Code:
If IsEmpty(Application.Evaluate("=INDEX(ActiveSheet.Range("E:E") ,MATCH("YRow, Activesheet.Range("C:C"),0))").Value) = True Then
MsgBox "It's Empty" <---this is just for debugging
End If
Any ideas?