Hi, Sample Data Table: My script is like this, tt = Graph Builder( Show Control Panel( 0 ), Variables( X( :HDDT ), Y( :Yield, Side( "Right" ) ), Y( :CAEF, Position( 1 ) ), Y( :CAHD, Position( 1 ) ) ), Elements( Bar( X, Y( 2 ), Y( 3 ), Y( 4 ), Legend( 1 ), Jitter( 1 ) ), Points( X, Y( 1 ), Legend( 2 ), Jitter( 1 ) ) ) ) But then, only Column "HDDT" and "Yield" is the fixed name for every data I will gather. Columns with "CA**" will change every batch of data. So I want to create a script that these columns of "CA**" will be variable. Currently, I create a script like this, For (i=3,i<=ncols,i++, tt = Graph Builder( Show Control Panel( 0 ), Variables( X( :HDDT ), Y( :Yield, Side( "Right" ) ), Y( :Column(i),Position( 1 )) ), Elements( Points( X, Y( i ), Legend( 1 ), Jitter( 1 ) ), Points( X, Y( 1 ), Legend( 2 ), Jitter( 1 ) ) ) ) But the result, instead of 1 graph will appear, each "Y variable" is coming out. Is there a best way? Thank you for the help. ^_^
... View more