@Mark_Bailey wrote:
I do not see why not after reading the on-line help starting here.
Besides adding new custom functions ....
Is there a functionality to add existing functions?
e.g.: can I add "is missing" to the new formula column menu?
The target: via right click menu generate a column
New Column( "missing(name)", Formula( Is Missing( :name ) ))
up to now I just managed to generate a column
New Column( "my is missing[name]", Formula( hogi:my is missing( :name ) ))
[same functionality, but less useful]
via
Add Custom Functions(
New Custom Function(
"hogi",
"my is missing",
Function( {col},is missing(col) ),
<<Transform Category( "hogi" ),
<<Description( "is missing for the new column formula menu" )
)
);
So, with other words, is there are transform category functionality outside of the context of new custom functions?