Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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