cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
jlmbs
Level III

Fix error: Send Expects Scriptable Object in access or evaluation of 'List

I am trying to write a JSL to get the summary of replicates on a concatenated data table. The code below throws an error, could you tell why and how to fix it?

 

dt_summary=dt_concatenated_lst << Summary(
	Group( :Sample name ),
	Mean( :"A280 Concentration(mg/ml)"n ),
	Mean( :"AvgA280 Concentration (mg/ml)"n ),
	Mean( :"CVA280 Concentration (%)"n ),
	Freq( "None" ),
	Weight( "None" ),
	Link to original data table( 0 )
);

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Fix error: Send Expects Scriptable Object in access or evaluation of 'List

What is the value of your variable named

dt_concatenated_lst

It needs to be of the form

Data Table( "xxxxxxx" )

where "xxxxxxx" is the name of the data table you want to be summarized.  Given the name of the variable, I am guessing the variable is a JMP list, not a simple data table reference.

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Fix error: Send Expects Scriptable Object in access or evaluation of 'List

What is the value of your variable named

dt_concatenated_lst

It needs to be of the form

Data Table( "xxxxxxx" )

where "xxxxxxx" is the name of the data table you want to be summarized.  Given the name of the variable, I am guessing the variable is a JMP list, not a simple data table reference.

Jim