Search results

  1. A

    How to Extract particular string from a Email body?

    Use an expression like this is a calculation stage: Mid([Email Body], InStr([Email Body]+16, "Primary Number: "), 7) That's not precisely what you'd put in, but essentially you're telling Blue Prism to take the 7 characters from the email body after the phrase "Primary number: ". Is your email...
  2. A

    folder deletion

    It would be something like this: DateDiff(9, Today(), [Files.Created date])>29
  3. A

    folder deletion

    Sure thing! You'll want to use the Utility - File Management business object (provided by Blue Prism). First, run the "get folders" (or get files, depending on what you need to do) action on your target folder. That will produce an array with the items at your specified path, including the...
  4. A

    "Cannot find region identified as an image" in Blue Prism Surface Automation

    If the element you're looking for isn't always going to be located with a predetermined set of coordinates, you could try increasing the color tolerance in the region editor. You could also set the position to "anywhere", which will force Blue Prism to hunt around the entire window for your...
  5. A

    Compare collections

    Hello @CamiCat It looks like you've found a solution to your array comparison. It looks pretty complex and it's not shocking that it takes a while to run on your system. When I need to deal with problems like this the "Collection Contains Value" action in the Collection Manipulation VBO is my...
  6. A

    Name of Collection Field

    I would echo what sivagelli said about the name of your fields. It's also possible that the data types of the fields might be different (Blue Prism won't like '2 = 2' if one of the values is a number and one is text). Possible to provide screenshots of the relevant stages?
Top