Hello.
I want to make a list in a PDF where only the rows that are duplicates of the [AMOUNT] column appear.
That is, the rows with duplicate [AMOUNT].
The structure of the table is:
[IDFRA]
[CONCEPT]
[AMOUNT]
Can you help me?
Thank you!!!
Solved! Go to Solution.
Use a START expression with a formula such as:
FILTER( table ,
ISNOTBLANK( FILTER( table ,
AND( [amount] = [_THISROW-1].[amount] , [id]<>[_THISROW-1] )
) )
)
User | Count |
---|---|
18 | |
11 | |
7 | |
3 | |
2 |