Dear All,
is there an easy way to change multiple column in one step?
Something like this:
If colum1=1, then column2=“A” AND column3=“B”?
thank you
Dear All,
is there an easy way to change multiple column in one step?
Something like this:
If colum1=1, then column2=“A” AND column3=“B”?
thank you
Hi @HarryKl
The Java Snippet is a suitable node for this.
For example:
if (c_column1 == 1) {
out_column2 = "A";
out_column3 = "B";
} else {
out_column2 = null;
out_column3 = null;
}
Use the Add button on the bottom right to add ouput columns (new or override).
Many thanks for your answer
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.