Search results

  1. Nandhu_Rajesh

    Running two process concurrently

    Hi Madhu, To handle this situation only we have Environmental Locks. If we open a excel file in a shared path, while an another person tries to open at the same time ,a pop up will be getting that the other person has opened the excel file. Better we can use environmental locks action in...
  2. Nandhu_Rajesh

    How to check data item contains certain value or not?

    Try with Decision Stage , use AND operator. eg: InStr(Trim([test]), "ASR")<>0 AND InStr(Trim([test]), "WEEA")<>0 AND InStr(Trim([test]), "COMBO")=0
  3. Nandhu_Rajesh

    Pop ups on SAP

    Can you share the code
  4. Nandhu_Rajesh

    Extraction of Number from a string

    I'm getting a string with dynamic value which have a numeric digit. I need to extract it. Please help to do in single stage or in code stage.
  5. Nandhu_Rajesh

    How to export a collection to excel which is having 1 lakh of data?

    I need to write the collection value to excel, How copy paste works in this.. I didn't get. Can you give the specific VBO and action
  6. Nandhu_Rajesh

    How to get excel as collection with field types intact.

    If you using MS excel VBO, then date will be getting as text. Using Select Query , it can give the exact datatype what the filed is having in excel. eg- "SELECT * FROM [SheetName$] WHERE [ColumnName]='***'"
  7. Nandhu_Rajesh

    MS Access

    Hi Mwacuka, I have used Queries to handle around 50000 datas in excel. Instead of using MS excel VBO, i have tried with OLEDB,
  8. Nandhu_Rajesh

    How to use distinct option in Query

    Thanks for your response. The issue is solved by using "SELECT distinct[Columnname] FROM [Sheetname$] "
  9. Nandhu_Rajesh

    How to get excel as collection with field types intact.

    Try using OLEDB. Use select query. SO u can get the exact value of Excel in Collection
  10. Nandhu_Rajesh

    How to export a collection to excel which is having 1 lakh of data?

    Hi, I have a collection having 85,000 values. i need to write the collection to a excel.I used Write collection of excel VBO, BP itself hanged . Please give a solution to export the collection into a excel file. Please Help me in this.
  11. Nandhu_Rajesh

    How to use distinct option in Query

    Hi Otonx, I have tried but in OLEDB, it shows too many parameters matching.
  12. Nandhu_Rajesh

    How to use distinct option in Query

    Hi, Since my Excel is having 50,000 Values. I am taking to DB and Fetch the Value. I just need a single column value which should avoid duplicate values. I am trying using Distinct Option. But unable to fetch it. Please Help me in this.
Top