0

Returning files that have a certain name

Hi!

I have files attached to a record.

concat(files(this)) returns all attached file names.

I’m looking for a function that only returns files that start with the string "ABC"

Can you help me, please?

Thank you!

2 replies

null
    • buy
    • 1 yr ago
    • Reported - view

    Try this :

    files(this) [ substr(text(this),0 ,3)="ABC" ]

    or 

    files(this)[contains(text(this), ".pdf")]

      • Web_Namer
      • 1 yr ago
      • Reported - view

      buy Perfect! Thanks a lot!!!

Content aside

  • Status Answered
  • 1 yr agoLast active
  • 2Replies
  • 45Views
  • 2 Following