Color cells by conditional formatting
I need a script that looks through all columns and color cells with the value "< LOD". My script does not give the desired outcome. Any advice?dt = Current Data Table();
// Get all of the column names in the data table
ColNames = dt << get column names( string );
NRows = N Rows( dt );
// Loop through each column and row to find "< LOD" and color the previous cell
For( i = 1, i <= N Items( ColNam
...