Hi All;
In my report I've written logic in the fetch method to process the data. This processing is done based upon a count whihc is calculated in the Fetch methosd itself. What I want to do is if this count is zero then that row should not be added to the report. I tried id like following:
If NetPresentCount > 0 Then
Set Fetch = Row
AddRow(Fetch)
Else
Set Fetch = Super::Fetch()
End If
But seems like it is not working. The row for which the count is zero are getting displayed on the report.Any suggestios regarding this?
Or Can any one tell me how to delete the rows that are going to appear on the report?
Bye
Cas
In my report I've written logic in the fetch method to process the data. This processing is done based upon a count whihc is calculated in the Fetch methosd itself. What I want to do is if this count is zero then that row should not be added to the report. I tried id like following:
If NetPresentCount > 0 Then
Set Fetch = Row
AddRow(Fetch)
Else
Set Fetch = Super::Fetch()
End If
But seems like it is not working. The row for which the count is zero are getting displayed on the report.Any suggestios regarding this?
Or Can any one tell me how to delete the rows that are going to appear on the report?
Bye
Cas