WhileReadingRecords;
numbervar ContadorVenda=0;
IF {RELATORIO_ANGLO.tp_movimento} = "V" THEN
ContadorVenda:=ContadorVenda+1;
How do I make this formula to show the value of "ContadorVenda" on the report ?
WhileReadingRecords;
numbervar ContadorVenda=0;
IF {RELATORIO_ANGLO.tp_movimento} = "V" THEN
ContadorVenda:=ContadorVenda+1;
How do I make this formula to show the value of "ContadorVenda" on the report ?
Just add a ContadorVenda; at the end. Like so:
WhileReadingRecords;
numbervar ContadorVenda=0;
IF {RELATORIO_ANGLO.tp_movimento} = "V" THEN
ContadorVenda:=ContadorVenda+1;
ContadorVenda;