Lucas,
See the attached table. You can do this via the GUI by following these steps for each zscore column:
- Select the target column and make sure no other columns are selected
- Main Menu > Rows > Row Selection > Select Where [same as Ctrl+Shift +W]
- Create the criteria: this will be an Or condition [where any condition is met] and press OK. See picture
Conditional Row Selection - Or condition
- Right click ( be careful) and select Color Cells and choose your color.
Otherwise, run a script like this.
Names Default to Here(1);
dt = current data table();
cdlg = Column Dialog(
Text Box("Select all columns to be higlighted"),
exY = ColList( "Y", Min Col( 1 ), Data Type( "Numeric" ) ),
);
If (cdlg["Button"] !=1, Throw(),
cnames = cdlg["exY"]
);
For(i =1, i<=nitems(cnames), i++,
ccol = column(dt, cnames[i]);
_idx = dt << get rows where(ccol[]>2 | ccol[] < -2); //set your criteria
ccol << color cells(RGB Color([255,128,0]),_idx) //use "yellow" a color name or RGB number
);
Note, I kept this simple, since I do not know your scripting skills: the color and the criteria is hardcoded and added a simple column selector.
Open the attached table and open the attached script and run the script by pressing the the Run Script icon or Ctrl+R or right click in teh script window and select Run Script.