Guys:
I have a report in which one column is based on calculations:
It works perfectly. Now if I want to filter the report so I can display only records which have sales on file, like this:
It does NOT work, none of the records are printed. If I dropped the for block, it works perfectly. Any clues ?
I have a report in which one column is based on calculations:
    COLUMN TITLE 'Sales'        ;
      DATA ( nTotal := GetSales( Inv_part, adDates ) ) ;
      SIZE 13 PICTURE "9999999.99" TOTALIt works perfectly. Now if I want to filter the report so I can display only records which have sales on file, like this:
   oRep:bFor  := { || nTotal >= 0 }It does NOT work, none of the records are printed. If I dropped the for block, it works perfectly. Any clues ?