Thanks @jthi, this has got me most of the way there.
Using this, I've managed to get a script that will go straight to the 'trimmed mean only' without computing everything else which makes the processing time more manageable.
Distribution(
Continuous Distribution(
Column( :MEASUREMENT VALUE ),
Quantiles( 0 ),
Histogram( 0 ),
Vertical( 0 ),
Outlier Box Plot( 0 ),
Customize Summary Statistics(
Mean( 0 ),
Std Dev( 0 ),
Std Err Mean( 0 ),
Upper Mean Confidence Interval( 0 ),
Lower Mean Confidence Interval( 0 ),
N( 0 ),
Trimmed Mean( 1 )
)
),
by(
:PRODUCT_ID,:PROCESS_ID, :MEASUREMENT_TYPE
)
)
Now all I'm looking for is a script I can add to the end of here to do the 'Make Combined Data Table' step. There is some further data manipulation I want to do once I've got the trimmed means so having it all in a single script would be ideal.