- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Dashboard
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?
This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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 .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Dashboard
Did you check the Database settings - Perhaps "Location" is set to Prompt?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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 .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Dashboard
I tried the different options, including "Full Path" as you indicate:
By using this option, my script no longer finds the "tank 1" table in my data tables, as you can see below:
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 .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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