"FOE EACH FILE IN FOLDER" - How to use NOT logic in filter field?

It sounds like you’re working on a file processing automation. Here’s a more standardized approach to achieve what you’re describing:

  1. Remove the filter criteria from the For Each File activity to loop through all files.
  2. Add an If condition within the loop to check if the current file name contains “Final_CompanyCode_”.
  • If the condition is true, either ignore the file or log a trace message.
  • If the condition is false, proceed with processing the file.

This way, you ensure that all files are processed except those containing the specified keyword. Does this approach align with what you had in mind?

Else let us know