Dear community,
I've been scratching my head for a while and I know the solution should be a simple one but I can't seem to figure it out.
I have one source containing a lot of geometry. Each ID can have multiple polygon records. I have a list of specific IDs that I want to filter out. However the feature merger will only take the first record and leave out any 'duplicate'.
Short example:
Project|Geometry|
Ab1|1
Ab1|2|
Ac3|1|
Ac3|2|
Ac3|3|
Ak1|1|
Ak1|2|
Desired result: Ac3 & Ak1
Ac3|1|
Ac3|2|
Ac3|3|
Ak1|1|
Ak1|2|
Is there an easy way to do this?