Run functions when column is not empty
Hi all, I have a function where I needed it running when and only the column is not blank. How can I properly check if the column is not blank and run the function, I tried isMissing() but is not working properly. Sample function: exsqr = Function( {x}, x * x );
exsqr( 5 );
So it would look like something like this:exsqr0; //function1if (isMissing(Column1), //if Column1 has values, it should run...