cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Actions missed by Advanced Log/Workflow Builder

container to collect actions which are not recorded yet.

NB:
"Workflow Builder + Add-Ins"  is already discussed in this post:
Workflow Builder + Add-Ins 
and this wish list entry: 
Workflow Builder + AddIns 

 

[More Topic Containers like this]

NB: If an action gets recorded by new version of Jmp, I  try to update the posts.
@ Jmp support, development: If I missed to do so, feel free to change the respective post (I guess you can do so)

 

      fixed: last checked
1 delete cell values Link - 19.0.3
2 fill to end of table / fill to row Link 17.2  
2b replace missing with previous values new bug 19.0.?  
3 enable scroll lock Link - 19.0.3
4 run table script Link - 19.0.4
5
12
manual row and column selection
row selection via "select rows"
Link 
Link

-

-

19.0.3

6 summary: drag n drop Link  - 19.0.3
7 row colors & markers Link 17.2  
8 Tables/summary: LDF Link 17.1  
9 open html file Link - 19.0.3
10 open H5 file Link -  
11 copy frame content Link - 19.0.3
         
13 clear exclude / hide Link - 19.0.3
14 Virtual Links: settings Link - 19.0.3
         
16 optimize: row deletion after selection via header graph Link 17.2  
17 copy to journal Link - 19.0.3
17a 

17? - again - sorry
outline close orientation
Link 18.?  
17b display box orientation   - 19.0.3
18 actions from tables red triangle menu Link - 19.0.3
19 width=0 Link -  
20 initial column values Link    
21 save project Link    
         

 

 

37 REPLIES 37
hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

With Jmp18, execution of a script is now recorded in Workflow Builder:

 

hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

18)
most of the actions in the table context menu are not recorded:

hogi_0-1718434369759.png

 

hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

shampton82
Level VII

Re: Actions missed by Advanded Log/Worflow Builder

@hogi I can confirm 2b is not fixed in 18.0.   So sad.

 

Steve

hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

20)
Column property - initial values.
E.g. to add the current time stamp to newly added rows

https://community.jmp.com/t5/Discussions/Initialize-data-very-useful-but-fragile/m-p/780753
hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

With JMp 19.x
issue #2b got fixed:

// Replace Missing with Previous Value
For Each( {irow}, Index( 1, N Row( Data Table( "Big Class Families" ) ) ),
	{prev = Empty(), dt = Data Table( "Big Class Families" )},
	If( Is Missing( dt:height[irow] ),
		If( !Is Empty( prev ),
			dt:height[irow] = prev
		),
		prev = dt:height[irow]
	)
);

Unfortunately, the code is generated without Begin/End Data Update()  
i'd guess: very slow for large data tables.


for comparison: Recode
-> here Begin/End Data Update is added by default.

// Recode column: height
Local( {dt},
	dt = Data Table( "Big Class Families" );
	dt << Begin Data Update;
	For Each Row(
		dt,
		dt:height[] = Map Value( dt:height, {62, 66}, Unmatched( dt:height ) )
	);
	dt << Run Formulas;
	dt << End Data Update;
);

 

hogi
Level XIII

Re: Actions missed by Advanded Log/Worflow Builder

Recommended Articles