Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rboccuzziWelcome to Lavastorm Community!
So to create a new column, you want to use a Filter node, and the emit statement. If you connect a filter to your data, it will default to emit *. You will want to create the string you want to emit, putting it in a temporary variable, and then emit it. You could put this following code there:
PercentageFormatted = str('Col B') + "%"
emit *, PercentageFormatted as "Col C"
This converts the number in the field "Col B" to a string, and then appends the "%" to the end of it.
Cheers
Rich