confFormula¶
This is a shorthand version of getFormulaFromConfig.
It can only be used within the runFromConfig function.
confFormula(
column=varName,
errIgnore=FALSE,
valueOnError=0
)
Changes from Autory 2 to Autory 3
The old conf function was removed in Autory 3.
confFormula is its direct replacement:
Before:
runFromConfig("t_Inputs", "Row1", "func", conf("Formula"))
After:
runFromConfig("t_Inputs", "Row1", "func", confFormula("Formula"))
Arguments¶
The arguments are the same as for getFormulaFromConfig, except that TableName
and RowLookup are inherited from the surrounding runFromConfig call.
Examples¶
See runFromConfig.