Recent content by Pramod Singh Kushwaha

  1. P

    Falttening the PDF

    I am using this code , so needed help in placing the dll file and whats the dll and namespace to be added in blueprism initialize page
  2. P

    Falttening the PDF

    Sub Flatten_Folder() Dim MyFile As String Mypath = InputBox("Enter the path to the folder where the PDF files are Located **MUST END WITH \**") MyFile = Dir(Mypath) Do While MyFile <> "" If MyFile Like "*.PDF" Or MyFile Like "*.pdf" Then Fullpath = Mypath & MyFile Set App =...
  3. P

    Falttening the PDF

    Does any one have code to convert the pdf to flattened pdf using code stage, Also needed dll and namespace to be used.
  4. P

    filter Pivot table fields

    i am passing the macro code in String_Filter
  5. P

    filter Pivot table fields

    Blueprism would be better. so that i can write in code stage currently i am using this code Dim wb,ws,sheet,excel As Object Dim arr(11) as object arr(11) = String_Filter.Split(",") Try wb = GetWorkbook(Handle,Workbook) ws = GetWorksheet(Handle,Workbook,Worksheet) wb.Activate() ws.Activate()...
  6. P

    filter Pivot table fields

    Hi everyone , can anyone help me with how to filter pivot table fields. with multiple selections . The micro code is below ActiveSheet.PivotTables("PivotTable1").PivotFields("[Time].[Month].[Month]"). _ VisibleItemsList = Array("[Time].[Month].&[2017]&[11]", _...
  7. P

    Double click in excel cell

    Hi, As of now I don't have access to view macro that's a big problem.. or else I could invoke the macro from BP.. If any general code to double click on particular cell that would help alot.. Thanks..
  8. P

    Double click in excel cell

    It is xlsb file. The requirement is double clicking on a particular cell which has "?" And on double clicking the cell , a pop appears (pop can be spied through BP ) but unable to spy the cells.. So it will be great if someone could provide the code for double clicking the cell..
Top