I'm trying to use the "Delete duplicates by attribute" tool in QGIS's Graphical Model Builder. My aim is to delete duplicates based on two fields, "Point_ID" and "Agg_Class". I can easily do this using the tool on it's own, but I can't figure out how to get this to work in the model builder.
1 Answer 1
Use Pre-calculated Value (icon ε) instead of value and enter the fieldnames in either of the following syntaxes : 'Point_ID;Agg_Class'
or array('Point_ID','Agg_Class')
Expected fomat: selected field names as an array of names, or semicolon separated string of options (e.g. 'fid;place_name')
-
1Hey All, this worked for me! Thanks a million for the help!Mícheál– Mícheál2025年01月27日 09:27:02 +00:00Commented Jan 27 at 9:27
Explore related questions
See similar questions with these tags.
field1;field2;fieldx
'
point_id;Agg_Class
works, but notpoint_id; Agg_Class