CSV parser missing bundle in output

I’ve made a scenario that parses a csv file and sends it as an email to myself. The module that’s responsible for parsing the csv file is missing one bundle in the output. The module receives 18 rows of formated CSV data, and its supposed to convert each of the rows into a bundle, however it’s only outputing 17. This is a minor issue, but I’d like to hear if someone else has had a similar problem. I’ll add an image of the scenario that contains the faulty module.

The image shows the module that outputs one less bundle than expected.

Hi @Admir_Ljubovic
The reason you’re seeing only 17 bundles instead of 18 is likely because the last row in your CSV doesn’t end with a line break. The parser in Make.com might skips the final row if there’s no newline character after it.

Quick fix: Just add one empty row at the end of your CSV file. That way, the parser correctly reads and processes all 18 rows.



Best regards,
Msquare Automation
Platinum Partner of Make
@Msquare_Automation

1 Like

That did the trick. Thank you very much

1 Like

Hi @Admir_Ljubovic
Glad to know that your issue is resolved now.We would really appreciate if you mark the answer as solution if it helped you. This will keep the community healthy and organized.

Best regards,
Msquare Automation
Platinum Partner of Make
@Msquare_Automation

1 Like