Recent content by hixavolev

  1. H

    Blue Prism -MS Excel - Text to Column VBA

    Create an integer matrix Dim matrix = New Integer(6, 1) {{1, 1}, {2, 1}, {3, 9}, {4, 1}, {5, 1}, {6, 1}, {7, 1}} Full code Dim wb, ws As Object Dim excel, sheet, range As Object Dim matrix = New Integer(6, 1) {{1, 1}, {2, 1}, {3, 9}, {4, 1}, {5, 1}, {6, 1}, {7, 1}} Try wb =...
  2. H

    Solved Launch Internet Explorer with URL from data item

    Use a navigate stage, select the action Launch In this action, one input parameter is called arguments just put in there the URL of the website that you want to launch "https://www.google.com"
  3. H

    Solved How to handle csv file

    This works amazing
  4. H

    [Question]

    Hi, I spied a text with region mode spy, I already setup as coordinate in order to use a read stage later. configuring Data with Recognise Text. When I tested in my machine works fine, but when i tested in other machine, doesnt recognize it, I found that the problem is that there's a tiny change...
  5. H

    Unable to convert text to number

    Try removing the , (comma)
Top