cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles