I want to create a new column and populate values based another column in the same row. Example : I have an ID number in which 1st character denotes which team he represents, Based on the first character i need to populate a abbreviated team name in a new column.
You can use Rule Engine node. There you can write such rules using LIKE operator.
For example: $yourColumnName$ LIKE "A*" => "Australia" $yourColumnName$ LIKE "U*" => "USA"
ā¦
If you have too many rules and want to keep them in dictionary table you can extract first character from your ID column using substr() function from String Manipulation node and then follow it up with Cell Replacer node to add whole team name based on abbreviated team name. For creating dictionary table you can use Table Creator node.