Forum Discussion
Moniek
3 years agoResolver I
Show only rows with the same value
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
- 3 years ago
Moniek , create a new column
cnt = Countx(filter(Table, Table[Amount] = earlier(Table[Amount])) , Table[Amount])
You have filter cnt> 1 in visual
amitchandak
3 years agoSuper User
Moniek , create a new column
cnt = Countx(filter(Table, Table[Amount] = earlier(Table[Amount])) , Table[Amount])
You have filter cnt> 1 in visual
Moniek
3 years agoResolver I
Super thanks amitchandak !