Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
mnoel1
Contributor
Contributor

Remove a column from dynamic type input in tjavarow

Hello,

I want to remove a colum from dynamic type input in tjavarow.

I tried this but it didn't work :

Dynamic dyn = row3.table;

dyn.removeColumn("NameColonneToDelete");

Can anyone help me ?

Thanks

Labels (2)
1 Reply
Shicong_Hong
Employee
Employee

Try this code on a tJavaRow component. 

Dynamic columns = input_row.DynamicColumnName;
columns.removeColumn("removedColumnName");
output_row.DynamicColumnName=columns;