11-30-2010, 10:38 AM
Hi Jove,
Try something like this:
If you are fetching the data from data table, then for a perticular row-column, if there is no data; it is equivalent to "".
Try something like this:
Code:
If c <> 0 AND c <> "" Then
Reporter.ReportEvent micPass, "Data in Column: " & i & " and Row: " & j, "Data: " & c
Else
Reporter.ReportEvent micFail, "Data in Column: " & i & " and Row: " & j, "No data"
End If
If you are fetching the data from data table, then for a perticular row-column, if there is no data; it is equivalent to "".