Please take care - Col aggregations like
Col Mean(If(:Sample ID == "Blank", :Data, .))
are very (!!!) slow due to the character comparison in the if expression.
This is ok for a few thousand rows, but for tables with millions of rows, this will take a lot of time.
Better: add a dummy column that maps the character column (:Sample ID) to numeric values and use the numeric column inside the if expression -> orders of magnitude faster!
Tips and Tricks - best practice with JMP/JSL