I have a point layer in QGIS (extracted vertices from a polygon). I need to select automatically the point which has the minimum X and minimum Y coordinates (the lowest on the left), for any geometry.
I know I can select by expression the minimum coordinate:
"ycoord" = minimum("ycoord")
But I do not know how can I select with "minimum Xcoordinate AND minimum Ycoordinate"
"xcoord" = minimum("xcoord") AND minimum("ycoord")
it does not work.
Thank you in advance for your help!