How to get all my scenario names in a line break style?

Hi Makers!

My scenario:

  1. Lists all my Make scenarios
  2. Get all my scenario blueprints
  3. Upload all my scenarios in .json format to Google Drive

So far so good! But here’s my problem:

I want to get the names of all my scenarios.
And organise them in a list where the scenario names are separated by a line break.

The output would be:
Scenario name 1↵
Scenario name 2↵
Scenario name 3↵
etc. (with a line break between each scenario name)

So that I can then send them by email or create a Google Docs so that I can print out the list of my scenarios.

How can I do this?

P.S. I’ve added an Array Aggregator at the end of my scenario.
Because without the Array Aggregator, Make was sending emails or creating a document for EVERY scenario listed!

Instead of array aggregator you can use the text aggregator module, click ‘Show Advanced Settings,’ and then select ‘New Row’ as the Row Separator

3 Likes

Hi @RBalani! Thanks for your help :grinning:
It works for Google Docs, but not for email.
But it’s ok for me: just want to print it out.
Thank you very much!

For email you’ll need to use HTML tags, specifically the line break tag

<br> instead of newline/new row

3 Likes

Hi @samliew, thanks for your advice!
But it doesn’t work because of the output format of the aggregator.

You can change the “Row separator” option in your Text Aggregator module to “CUSTOM”, and use a  <br>  instead.

3 Likes

Hi @samliew. It also works perfectly! Thank you very much.

2 Likes

No problem, glad I could help!

In future, please create a new thread for each question. This makes it easier for others with the same problem to search for the answer. Thank you for your cooperation!

The Make Community guidelines encourages users to try to mark helpful replies as solutions to help keep the Community organized.

This marks the topic as solved, so that:

  • others can save time when catching up with the latest activity here, and
  • allows others to quickly jump to the solution if they come across the same problem

To do this, simply click the checkbox at the bottom of the post that answers your question:
Screenshot_2023-10-04_161049

3 Likes

Ok @samliew, I will create a new thread in future. Thanks again!

2 Likes