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
-
Try this :
files(this) [ substr(text(this),0 ,3)="ABC" ]
or
files(this)[contains(text(this), ".pdf")]
Content aside
- Status Answered
- 1 yr agoLast active
- 2Replies
- 46Views
-
2
Following