How to Upload Multiple Files to a 'Files' Column in Monday Using Make

Hi! How can I add 2 or more files to a column in Monday’s Files? As you can see, thanks to the iterator, the HTTP module gives me 2 outputs, one with the PDF and the other with the PNG, but it doesn’t upload both to Monday

1 Like

HI @jose2023 There are 2 operations on your last Monday module so it looks like 2 files were uploaded. Could you share your blueprint please? It will help clarify things

2 Likes

Hi! It uploaded the same file twice, even though in the HTTP output bundles show both files.

image
blueprint.json (433.1 KB)

1 Like

Hi @jose2023 Sorry for the late reply. Not sure if you’ve already solved it or not.
If not, you’re actually getting two different files (data) but with the same filename. This is happening because in your Monday module, you’re mapping the filename from the original Fillout array instead of from each item in your iteration. So when uploading the file, Make will always grab the same filename (from the first item in your Fillout array).
To fix this, you’ll need to map the filename from the iterator instead.
Hope that helps

1 Like