Hello All,
I need to count lines of duplicated some entries as one line grouping by ID. It is additional customized table. Please see attached file. This report cant to use any grouping. So I need to use filter. Please any solution
My filter cannot unique line:
Entry.SETFILTER("Number",'91.7');
IF Entry.FIND('-') THEN REPEAT
Numbers[1]:=Entry.COUNT(); //Numbers[1]+=1;
UNTIL Entry.NEXT=0;
0
Comments
Are you trying to count the number a lines with 'aaaaa' and the number of lines with 'bbbbb'? Or are you trying to count the number of lines with a certain Number, like 91.7?
Use proper temporary Instance of a table and count the number as below :
It is solved.