cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
%3CLINGO-SUB%20id%3D%22lingo-sub-2789%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3EC%C3%B3digo%20JSl%20para%20eliminar%20la%20columna%20a%20la%20que%20hace%20referencia%20la%20f%C3%B3rmula%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2789%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3EEstoy%20intentando%20eliminar%20una%20columna%20en%20JSL.%20Sin%20embargo%2C%20la%20columna%20que%20se%20va%20a%20eliminar%20es%20utilizada%20por%20otra%20columna%20de%20una%20f%C3%B3rmula.%20No%20puedo%20encontrar%20la%20sintaxis%20de%20JSL%20para%20eliminar%20la%20f%C3%B3rmula%20cuando%20elimino%20la%20columna.%20Se%20agradecer%C3%ADa%20cualquier%20idea%20de%20c%C3%B3mo%20lograr%20esto.%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2791%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3ERe%3A%20C%C3%B3digo%20JSl%20para%20eliminar%20la%20columna%20a%20la%20que%20hace%20referencia%20la%20f%C3%B3rmula%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2791%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3EGracias.%20Eso%20fue%20bastante%20simple%20y%20f%C3%A1cil.%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2790%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3ERe%3A%20C%C3%B3digo%20JSl%20para%20eliminar%20la%20columna%20a%20la%20que%20hace%20referencia%20la%20f%C3%B3rmula%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2790%22%20slang%3D%22en-US%22%20mode%3D%22NONE%22%3E%3CP%3EPrimero%20debes%20eliminar%20la%20f%C3%B3rmula%20que%20hace%20referencia%20a%20la%20columna%3A%3CBR%20%2F%3E%3CBR%20%2F%3E%3C%2FP%3E%0A%3CPRE%3E%3CCODE%20class%3D%22%20language-jsl%22%3EColumn(%22column%20name%22)%20%26lt%3B%26lt%3B%20delete%20formula%3B%3C%2FCODE%3E%3C%2FPRE%3E%0A%3CP%3ELuego%20elimine%20la%20columna.%3C%2FP%3E%3C%2FLINGO-BODY%3E
Choose Language Hide Translation Bar
terapin
Level VI

JSl Code to Delete Column Referenced By Formula

I'm trying to delete a column in JSL. However, the column to be deleted is used by another column in a formula. I can't find the syntax for JSL to remove the formula when I delete the column. Any ideas how to accomplish this would be appreciated.
1 ACCEPTED SOLUTION

Accepted Solutions

Re: JSl Code to Delete Column Referenced By Formula

You should delete the formula referencing the column first:

Column("column name") << delete formula;

Then delete the column.

View solution in original post

2 REPLIES 2

Re: JSl Code to Delete Column Referenced By Formula

You should delete the formula referencing the column first:

Column("column name") << delete formula;

Then delete the column.

terapin
Level VI

Re: JSl Code to Delete Column Referenced By Formula

Thanks. That was rather simple and easy.