How to parse Design Role property with a script
I need to be able to identify which columns in a DOE data table are factors. I know there is a design role column property.column(dtDOE, 1) << get property("Design Role");
The problem is that the return value seems to be an unevaluated expression.DesignRole( Continuous )
Is Missing doesn't work in this context, but even if it did, I want to exclude blocking factors, so I need to somehow parse this t...