For example, "Big class.jMP "has selected column 1, and column 2 has already selected row 6
How can write JSL to automatically write the cell values of the selected range into a variable?
It looks like this:s1="TIM"s2=12
Thanks!
Go to Solution
I think this is what you are looking for
s1 = column(dt,(dt<<get selected columns)[1])[(dt<<get selected rows)[1]]; s2 = column(dt,(dt<<get selected columns)[2])[(dt<<get selected rows)[1]];
View solution in original post
Thank Jim!