Search results

  1. S

    How to Extract Table from windows application -- Blue Prism

    Hi, Can any one tell me how to extract data from Windows/Desktop application using Blueprism? is there any way?
  2. S

    How to automatically start my bot on adding of new Element in the Queue

    Hi, One of the external API is adding data to the queue. Once it is added automatically my bot should execute that data immediately? How it can be done?
  3. S

    AutoFilter - To filter data between two dates

    Hi, I am trying to apply autofilter to one of my date column inorder filter data between two dates. I am using code stage to achieve this, below is the code I am using GetWorkbook(handle,Nothing).Worksheets(sheetName).Activate...
  4. S

    How to Read Date Column from excel Date Data Type

    Hi, I am reading data from excel where it has around 20 column. One of the column is a date format( eg. 28-02-2019)... But after reading it the value is coming as Date Time. How Can I get only date value?
  5. S

    Spied element using AA and UI mode is not working in Internet explorer

    Hi, I have spied elements using AA and UI mode in internet explorer for particular web page. It works fine till date in my local machine. But when i moved this to Cloud environment none of the elements spied using AA and UI mode is not working. When I tried to identify the same element again it...
  6. S

    How to execute subQuery using oledb connection

    Hi, I want to execute below like query using oledb (referring two different excel) UPDATE [Onboarded resources$] a SET End_Date = (SELECT End_Date FROM [Sheet1$] b where b.POP_Notes_ID=a.Notes_ID); How can a
  7. S

    How to copy file to Clipboard

    Hi, I want to copy the file to clipboard is there any utility available to do that?
  8. S

    Sending Email through Pop3 VBO(GMail host)

    Hi, I am sending email using pop3 vbo (using GMAIL as host) but after sending email I am not able see that mail in the sent item of Gmail account. How can I Make that as visible?
  9. S

    how to read top 10 mails using lotus notes vbo

    Hi, Can any tell me how to read top 10 mails using lotus notes VBO ?
  10. S

    Updating charts in Excel

    Hi, Attached is the snap of my excel which contains charts. Once the new set of datas are inserted i need to update the data range of the graph with updated row number. Currently i am achieving this by the combination of sending global send key event and Region mode. It is working fine. But...
  11. S

    Error in Executing VB Script

    Hi, I am using below code in MSExcel VBO object to unhideAll rows and columns across all sheets in excel For Each ws In GetWorkbook(handle,Nothing).Worksheets ws.Activate ws.Columns.EntireColumn.Hidden = False ws.Rows.EntireRow.Hidden = False Next ws. the code is working fine when...
  12. S

    How to Use Microsoft.Office.Interop.Excel

    Hi, What are dll and NameSpace required to use Micorsoft.Office.Interop.Excel
  13. S

    BluePrism Too is hanging

    Hi, Now a days my BP tool is hanging and also it is very slow. For one of the use case i am regressive testing with huge amount of data. Should want to do any clean up activities in environmental level like clearing templogs and other temps stuffs?
  14. S

    VBA Script for insert copied cell

    Hi, I am using below script for insert copied cell by shifting the cell down With GetWorkbook(handle,Nothing).ActiveSheet.Range("B15:I47") GetWorkbook(handle,Nothing).ActiveSheet.Rows(24).Resize(.Value).Insert GetWorkbook(handle,Nothing).ActiveSheet.Rows(23).Resize(.Value +...
  15. S

    How to suppress warning window in Excel

    I am automating excel which has graph and charts. But sometime warning window is appearing in the excel which is breaking the code. This is general warning. How Can i suppress this.?
  16. S

    How to fetch formula of a cell using blue prism

    Hi, How I can get the formula of a particular cell in excel.
  17. S

    How to fine row and Column index of a value in excel

    Hi , I want to find the row and column index of particular value in excel. How can I achieve this using Blue prism? Eg: if "State" is in A1,B1 then in my code if I pass state it should return the index as A1:B1 some thing like this.
  18. S

    Adding new Column and applying formula in excel

    Hi , I have source file which has around 500 records before reading entire excel into collection I want to add one column called filter key and need apply formula for that column like = concat("I1","J1"). How i do this ? I am new to BP and I am from Java background. So, if anything need to...
  19. S

    Delete and paste collection to Excel

    Hi, I have a collection of data populated based on some business logic which originally populated from one the source excel. Now after updating this collection of data I want to add to this to the excel. For which the requirement is like, First copy the source file and paste in the new...
  20. S

    Serach for data in one Collection and store that paritcular row in one more row

    Hi, I have below scenario, I have two collection let say: Collection 1 Collection 2 Now I will iterate collection 1, for each iteration I will check in collection2 whether that particular value is present or not If presetn I will fetch the entire row data from collection 2 and will placed it...
Top