Hello there,
I have this requirement as mentioned below :
| Vendor | Pay term | Invoice | Record id |
| V1 | P1 | 1 | 1 |
| V2 | P1 | 2 | 1 |
| V2 | P2 | 3 | 1 |
| V2 | P2 | 4 | 2 |
| V1 | P1 | 5 | 2 |
| V1 | P1 | 6 | 3 |
Solution need to filter the records which are repeating more than once. For example above : V1 P1 combination is repeated 3 times . So 3 records of V1 P1 need to taken to output . Any idea how to do this .
Thankyou .