I have an archive with 11.000 customers and I want print only the customers not are active
ACTIVATE REPORT oInforme:oReport FOR ALLTRIM(UPPER((oDCli)->ACTIVO))=="NO";
ON END ( oInforme:StartLine(), oInforme:EndLine(), oInforme:StartLine(), ;
oInforme:Say(1, 'Totale clienti: '+Tran(oInforme:nCounter, '@E 999,999'), 1),;
oInforme:EndLine() )
Report class print the Report right as you can see here ( there is only one record) but it make an error when print the numbers of Records founded

how I can resolve this error ?
ACTIVATE REPORT oInforme:oReport FOR ALLTRIM(UPPER((oDCli)->ACTIVO))=="NO";
ON END ( oInforme:StartLine(), oInforme:EndLine(), oInforme:StartLine(), ;
oInforme:Say(1, 'Totale clienti: '+Tran(oInforme:nCounter, '@E 999,999'), 1),;
oInforme:EndLine() )
Report class print the Report right as you can see here ( there is only one record) but it make an error when print the numbers of Records founded

how I can resolve this error ?