Try this for the null’s position (set leftEdge to your desired x value):
leftEdge = 35;
L1 = thisComp.layer("Shape Layer 1");
x1 = L1.toComp([L1.sourceRectAtTime(time,false).left,0])[0];
L2 = thisComp.layer("Shape Layer 2");
x2 = L2.toComp([L2.sourceRectAtTime(time,false).left,0])[0];
L3 = thisComp.layer("Shape Layer 3");
x3 = L3.toComp([L3.sourceRectAtTime(time,false).left,0])[0];
xMin = Math.min(x1,x2,x3);
delta = leftEdge - xMin;
value + [delta,0]