Hi divya vani,
If you have 8 fields to Shifting fields, that you can use the loop in the formula the set it. such as:
numberVar x_coord := 0;
if then(
numberVar array X := [-X1,-X2];
numberVar N := 0;
numberVar cmLeng := 1440/2.5;
while N<3 do(
N :=N+1;
if then (
x_coord := X[N]*cmLeng+x_coord;
)
)
);
x_coord;
X1,X2 is the length of the file, x_coord is the number you want to shift.