Hi peterrrrp,
If I understood correctly that you want to "normalize" the X values of one plot to fit them to a range of another plot, maybe you can try the following script on the original worksheet: ////////////////////////////////
refXcol=1; //X column number as reference
targetXcol=3; //X column number to be normalized
sum(wcol(refXcol));
mi1=sum.min; //reference's minimum;
ma1=sum.max; //reference's maximum;
mr1=ma1-mi1; //reference's range;
sum(wcol(targetXcol));
mi2=sum.min; //target's minimum;
ma2=sum.max; //target's maximum;
mr2=ma2-mi2; //target's range;
r12=mr1/mr2; //ration o ranges
wcol(targetXcol)=(wcol(targetXcol)-mi2)*r12+mi1; //normalize
////////////////////////////////
Changing the column numbers appropriately, could you please try it?
--Hideo Fujii