rowlesmr
Is there any way to handles errors in input files in order to allow things to fail gracefully, or to continue a refinement if the error isn't significant to the result?
One potential application would be in reporting macros. I have a macro that reports corrected_weight_percent (amongst a bunch of other things). My macro will fail if I haven't set up the spike phase correctly as corrected_weight_percent isn't correctly defined.
I would like to be able to have an out_eqn defined something like =IfError(Get(corrected_weight_percent), -1); where if there is any error associated with trying to get corrected_weight_percent, just use -1 as the value. Maybe the Get function could implement that directly as Get(corrected_weight_percent, -1).