Is it possible to add a new column to a data table (a) at a certain position (e.g. after a particular column) and (b) assign it a formula?
The New Column command can do (a) and the Add Multiple Columns command can do (b), but is there a way to get both done in one go?
Something like the command below (which does not give the desired result, however):
dt << New Column( "NewCol",
After(:Col3),
Numeric,
Continuous,
Format( "Best", 5 ),
Formula( :Col3 * 2 )
);