Import 3 files in a folder with same prefix

Hi,
I have a folder that everyday I get 3 files with same prefix:

ACME_1_timestamp
ACME_2_timestamp
ACME_3_timestamp

How to import only to EM the 3 today’s files using the prefix “ACME_”?

Thank you very much in advance.

Hi Jorge,

see topic “Loading a list of files” in our tutorial here: https://easymorph.com/learn/load-file.html (scroll down to “Advanced topics”).

Calculate column [timestamp] in that list using the format() function.

The filtering can be done for instance using the “Filter by condition” action and expression that looks like

startswith[File name], 'ACME_1_' & [timestamp] ) or startswith([File name], 'ACME_2_' & [timestamp]) or startswith([File name], 'ACME_3_' & [timestamp])