How to use wildcard or like command in decision stage

Mikendersen

New Member
How do I get my decision to read true/false if my data contains .pdf anywhere in the text. Here's a picture of what I came up with so far (it doesnt work).



Being somewhat new to BP I have problems solving expressions so are there anywhere to learn more about them?
 

Attachments

  • 2019-03-26_11-53-33.jpg
    90.1 KB · Views: 58

sivagelli

Well-Known Member
Try expression Instr([Attachments], ".pdf"). InStr() returns the position of the .pdf it finds in [Attachments] data item, else it returns 0.
 
Top