Deleting Column Formula error by using Delete Property (formula) script.
Hi,
I have multiple columns with formula, and I wanted to remove formula after calculations.
codes are as below.
cols = dt << get column names();
For( i = 1, i <= N Col( dt ), i++,
cols[i] << Delete Property( formula )
);
Then, the log says the following:
Send Expects Scriptable Object in access or evaluation of 'Send' , cols[i] << /*###*/Delete Property( formula ) /*###*/
Can some...
jay_holavarri