Filtering out rows based on the same value in two columns
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi everyone, how would I go about filtering out data that are the same in Amount1 and Amount2 column grouped by the Account number? Thanks!
Original:
| Account | Amount1 | Amount2 |
| 1 | 100 | |
| 1 | 100 | |
| 2 | 200 | |
| 2 | 200 | |
| 3 | 300 | |
| 4 | 300 |
Desire result:
| Account | Amount1 | Amount2 |
| 1 | 100 | |
| 1 | 100 | |
| 2 | 200 | |
| 2 | 200 |
Solved! Go to Solution.
- Labels:
- Preparation
- Transformation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi
You can use the custom filter Option with specific columns
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks for the response, what if I have a lot of rows and do not know the numerical values? How can I filter it without manually entering the numbers?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @overhead_press ,
I've built the attached workflow for you.
This pivots the data so the values are in the same column, it then removes empty values, pivots back to compare values for the same account number on the same line. Once we've determined the ones that match, use the Account to join back.
Hope this helps,
M.

