How to Retrieve and Use All Options After Performing a Comma Split in a Module?

Hello, I’m trying to perform a split on a comma-separated value (Fulham x Crystal Palace, Premier League, 01/01/2024). When the process is run, it returns the three options correctly, but when trying to select them in the next module, only the first option is displayed. How can I proceed to ensure that all options are retrieved and used preferentially?
image
image

Welcome to the Make community!

You can use the built-in function get

e.g.:

{{ get(15.Split; 1) }}
{{ get(15.Split; 2) }}
{{ get(15.Split; 3) }}

For more information, see the function documentation in the Help Center.

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

1 Like

It worked, thank you very much, you are amazing!