I know how to get the geometry (x,y) into Attribute fields with the Calculator, but I can't figure out how to update the geometry from values contained in attributes.
I am trying Field Calculator > Update existing field > <geometry>, but I can't find how to assign my "x" and "y" fields to the actual feature geometry.
I don't want to manually drag each point with the vertex editor, or type in each coordinate. I have to update many points.



geom_from_wkt('POINT('||'31.797788'||' '||'30.729471'||')')Notice the single quotes. Using double quotes in QGIS 2/3 will cause an error as it mistakens the x and y values as field names.
– 15Step Jan 24 '19 at 12:50