cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Clear cell colors

How do I script to clear all cell colors (not marker or row colors)? I know I can highlight all rows manually and right click and "clear color", but how I do this using script? Thanks in advance!

2 REPLIES 2
jthi
Super User

Re: Clear cell colors

JMP is able to script that for you

// Clear color for selected cells
Data Table("Untitled") << Select All Rows;
For Each({col}, {:Column 1, :Column 2}, col << Color Cells(""));

so with slight modification

For Each({colname}, Current Data Table() << Get Column Names("String"),
	Column(Current Data Table(), colname) << Color Cells("");
);
-Jarmo
txnelson
Super User

Re: Clear cell colors

Select the column(s) you want to Clear the Cell Colors from, and then go to

     Cols=>Clear Cell Colors

txnelson_0-1733117901869.png

 

Jim

Recommended Articles