cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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