Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I have a table with many transactions including date, amount, description and other columns. Now I want to see only the lines with the same amount? How can solve this?
Thanks
Solved! Go to Solution.
@Moniek , create a new column
cnt = Countx(filter(Table, Table[Amount] = earlier(Table[Amount])) , Table[Amount])
You have filter cnt> 1 in visual
@Moniek , create a new column
cnt = Countx(filter(Table, Table[Amount] = earlier(Table[Amount])) , Table[Amount])
You have filter cnt> 1 in visual
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 32 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 27 | |
| 24 |