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

Variable from table usage

I want to receive an variale from user, using this script:

dt = current data table();
r=ColumnDialog(
XL=ColList("X Axis Value");
);

After chosing in the popup window one of the options (for example "TestType"),
I receive the result - {XL = {TestType}, Button( 1 )}

But I don't know how to use the "TestType" in the script,
tried:
show(char(XL))
show(char(XL[1]))
XL[1,1]
and many others...
1 REPLY 1

Re: Variable from table usage

Fond it:

result = r["XL"];

Recommended Articles