Hi,
I got a question on my script about generating Summary Table, and here is what I did.
1. created a Summary table by JSL, call it S1 table
dt<<
Summary(
Group( :Name( "Date-Time" ), :Lot, :Test ID, :Test Label, :Field X, :Field Y ),
Variance( :Name( "Mreg (nm)" ) ),
);
2. trying to create another Summary table (S2) based on S1 with the following JSL
dt<< Summary(
Group( :Name( "Date-Time" ), :Lot, :Test Label ),
Mean( :Name( "Variance(Mreg (nm))" ) ),
Freq( "None" ),
Weight( "None" )
)
It didn't work with error "Column not found in access or evaluation of 'Bad Argument'"
3. I deleted the line of statistics argument, then it worked to generate S2
dt<< Summary(
Group( :Name( "Date-Time" ), :Lot, :Test Label ),
Freq( "None" ),
Weight( "None" )
)
All scripts above were copied from auto-generated script (meaning I manually performed operations I want and copied the source script).
Would anyone have idea why?
Best regards,
Zihao