Forum Discussion
To be honest I'm not 100% sure I follow but if you just need the jinja fromatting then string concatenation is just combing values like: {{a.field_1 + b.field_2}} or adding a space or comma between {{a.field_1 + ', ' + b.field_2}} and then incrementing numbers if the source value is already an integer would just be {{a.field_3 + 1}}, maybe an int filter as well {{a.field_3|int + 1}}
------------------------------
Chayce Duncan
------------------------------
Thank you, Chayce. That may be all I need. I will try to explain in more detail just in case.
Emails for purchases are captured in a connected table. Another table is used to capture specific details from each purchase email. Names for the purchase are included. So, person A makes a purchase > email is captured > a pipeline creates a record with the desired details from the email.
Person A makes another purchase. Rather than create a whole new record, I want to update the previously created record for person A with the additional names and an increment of the number of items. The names may or may not be given but, if they are, concatenate the 2nd purchase names with the first purchase names.
Does that make sense?
------------------------------
James Carr
------------------------------