1. Do the filenames exist in Excel?
A: the filenames is not exist in Excel, as this will be a bi-weekly routine, and the filename will be change each updates, thus I'm thinking to not put inside the excel data.
if yes, pull them into the datatable and reference CurrentItem[filename]
if no…
2. Is the table in the same order as %Files%?
%Files% only consists of the files I want to attached to email.
If yes, use a Loop from 0 to %Files.Count - 1% increment of 1. Now Instead of %CurrentItem[ColumnTitle], you will use %Email[LoopIndex][ColumnTitle] and can use %Files[LoopIndex]%.
if no, then where are you correlating an email/subject to an email address? Is it in the filename?
I try to elaborate further.
Every 2 weeks I need to compile about 50 emails to 50 individual with unique files.
Each email subject will contain a unique value, eg : Biweekly report January 2023 Section TCH
& the files that attached will be name as example : BCG(Section TCH) 01.pdf
My plan is set PAD to grab each files and send out in ascending order, my compromise here is, i intend to add numbering in front of the files, such as 01.BCG(Section TCH) 01.pdf so that PAD able to recognize and send the files according to the ascending order of the email list.
Currently my excel file only got 2 column.
I want PAD to send steve@test.com with the files 01.BCG(Section TCH) 01.pdf
Then continue to send jason@test.com with the second files starting with 02.
while ron@test.com with the third files starting with 03.

Thanks