Hi All,
Is there a way in which a piece of script can automatically be ignored if the targeted column is not present? For example I have the scripting shown below, and sometimes there is not a "Numerical C" available (It is a piece of automation which may or may not have 3 variables). The script currently stalls on this piece when there is no "Numerical C" to be found; ideally I will be wanting to make a script with multiple "Numerical #" which will automatically ignore that piece of the script if it is not present:
Data Table( "Jan 5 Subset" );
Column ("Column") <<Data Type (Numeric);
Column ("Column") <<Modeling Type (Continuous);
Column ("Data") <<Data Type (Numeric);
Column ("Data") <<Modeling Type (Continuous);
Column ("Numerical A") <<Data Type (Numeric);
Column ("Numerical A") <<Modeling Type (Continuous);
Column ("Numerical B") <<Data Type (Numeric);
Column ("Numerical B") <<Modeling Type (Continuous);
Column ("Numerical C") <<Data Type (Numeric);
Column ("Numerical C") <<Modeling Type (Continuous);
Thanks you,
Joe