Hi, i’ve a workflow that check if an excel file is create in a folder, then start the job.
The job consist to read th B column of excel file, add a path before the value, check if path exist then add to a list and finally join pdfs to unique one.
Everything works fine, but when the pdfs are much more (around 200-300) the list don’t store the value and the pdf join action get error.
how i can do this? I’ve think to do a if else statment. If collected value is more than 20, create a batch list, join the pdfs and add the joined pdfs to a final list, then join all the lists. But if there is a solution to simplify the process, youre welcome!
Youre right. My error is the check control of first file to collection. I’ve forget to add file.exist
OK, it works, but now i’ve another question: if file exist the worflow add to a list and do the job, But if file doen’t exist how i can add the filename to a txt (log.txt)? On every file that doesn’t exist new line in the same txt?