Treating multiple rows as a single record

Hello,

I have data that looks like this:
Screen Shot 2020-06-15 at 2.57.02 PM

I would like to treat the four rows as a single record or somehow merge all data into a single row. Is that possible? If yes, can you advice how to do that?

I want to send a single email that would include this:

1,983
23
48,082
44

Hey Max,

I would use a Merge Values step, and set the delimiter to <br> so that the email will interpret those as linebreaks.

1 Like

Thanks - that works!

What if I also want to add a label to each number, something like this:

Name 1: 1,983
Name 2: 23
Name 3: 48,082
Name 4: 44

Above formatting can be achieved with Column Split step.

1 Like