One way is to use the Crosshairs tool
Another way is to use the Interpolate() function in JSL to find the value
names default to here(1);
dt=current data table();
xMat = :x << get values;
yMat = :y << get values;
yi= interpolate( 4.5, xMat, yMat);
show(yi);
/*:
//:*/
names default to here(1);
dt=current data table();
xMat = :x << get values;
yMat = :y << get values;
yi= interpolate( 4.5, xMat, yMat);
show(yi);
/*:
yi = 2.65;
Jim