Show a pop up with a statement
Hi, I am new to JSL scripting and was wondering how can I get JMP to pop up a window to display how many cols were deleted. My code to delete cols is shown below:dt = Current Data Table();For( i = N Col( dt ), i >= 1, i--, If( (Col N Missing( Column( i ) ) / N Row()) == 1, dt << delete columns( i )));