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
mat-ski
Level III

Is there a way to find all of the variables in the Here scope?

I am currently looking at this documentation page and seeing that you can use Show Globals() or Show Symbols(). In this case I would like to know what all is in the Here scope specifically. 

1 ACCEPTED SOLUTION

Accepted Solutions
mat-ski
Level III

Re: Is there a way to find all of the variables in the Here scope?

Sorry I would delete this question as it's actually pretty straightforwardly answerable once you realize that Here is just a normal Namespace. The answer is:

 

Namespace( "here" ) << Get Keys

View solution in original post

2 REPLIES 2
mat-ski
Level III

Re: Is there a way to find all of the variables in the Here scope?

Sorry I would delete this question as it's actually pretty straightforwardly answerable once you realize that Here is just a normal Namespace. The answer is:

 

Namespace( "here" ) << Get Keys

Re: Is there a way to find all of the variables in the Here scope?

You can also use Help > Scripting Index > Functions > Programming:

 

name.PNG

Recommended Articles