cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Dashboard

hcarr01
Level VI
Hello everyone,
 
I created a Dashboard on JMP, this Dashboard uses different Excel databases.
The Dashboard runs through a JMP script.
However, I wish I could make this script even better.
 
The problem is that when running the script I have 2 problems:
 
1 - Having to manually assign the corresponding tables each time
In my Dashboard script, each Excel file is well populated (path + corresponding sheets)
 
undefined

 

2 - When I run the script and I do the correspondence between the tables, a "Dashboard preview" interface occurs. In the best case, how could I remove/skip this step to have direct access to the final Dashboard?

 

Thanks for your help !
 
Cordially

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

7 REPLIES 7


Re: Dashboard

Do you have JMP 17? If so, you might consider using the Workflow Builder to create your dashboard, as it will remember column names/assignments.

hcarr01
Level VI

Re: Dashboard

Yes I use JMP 17, the script for my Dashboard works correctly. However, I just wish I could improve it without having to start all over again.

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

hogi
Level XII


Re: Dashboard

Did you check the Database settings - Perhaps "Location" is set to Prompt?

hogi_0-1685461655040.png

 

hcarr01
Level VI

Re: Dashboard

Not all "Location" options work, I still have the same problem.

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .


Re: Dashboard

@hcarr01 - Can you clarify which options do not work as expected?  Some will require additional steps - for example if the Location is set to `Script`, the table will need to be opened / created in the JSL defined in the Application.  To edit scripts in a Dashboard you will need to turn off Dashboard Mode.

 

If you want the tables to simply open from the location defined in the Path property, you can use the `Full Path` option.  This is the behavior when opening a .jmpapp file for editing.  The Location field is used when running a JMP App/Dashboard to allow for the app to run on different tables.

hcarr01
Level VI

Re: Dashboard

I tried the different options, including "Full Path" as you indicate:

 

undefined

 

By using this option, my script no longer finds the "tank 1" table in my data tables, as you can see below:

undefined

 

I have this problem for all the different options except for "Embedded Script"

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

shampton82
Level VII


Re: Dashboard

How I make my dashboard work with no prompts is to have the files open already then use this type of code in the dashboard script:

	Tables(
		DataTable1 = GuiTable(
			Set Path( "1st FPI summary data.jmp" ),
			Set Label( "1st FPI summary data" ),
			Location( "Name" ),
			Invisible( 0 )
		),

for item # 2, make sure the dashboard script ends with << Run; not << Edit.

 

Hope this helps!

Steve

Recommended Articles