Task
Each contact needs PDF_URL like https://site.example/files/{customer_id}.pdf. If customer_id is empty, no link should be exported.
Short answer
First add an export condition: customer_id is not empty. Then build PDF_URL with two rules: prefix and .pdf.
How to do it in Eofferix
- Upload the contacts table and open the table editor.

The preview shows only rows with non-empty customer_idand a ready personal link. - Create
PDF_URLfromcustomer_idand add a before-transformation export condition:customer_idis not empty.
After the non-empty customer_idcondition, transformations contain only two link-building rules. - In transformations, add two rules:
Add to beginningwithhttps://site.example/files/andAdd to endwith.pdf. - Save the template and use the column as a Mailchimp merge field.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| contact_id | customer_id |
|---|---|
| C-1001 | 1024 |
| C-1002 | |
| C-1003 | 2048 |
After
result| contact_id | PDF_URL |
|---|---|
| C-1001 | https://site.example/files/1024.pdf |
| C-1003 | https://site.example/files/2048.pdf |