Search results

  1. S

    how to retrieve pivot table data to mail body in outlook

    Hi , Anybody help to retrieve pivot data table to mail body in outlook -> I want to create pivot table from data and covert pivot range table data to mail body and delete blank column from pivot table
  2. S

    How to open outlook with subject line

    How to open outlook with subject line "Report-02/16" and read table data in body of mail or export table in excel using VBA
  3. S

    Filter on likewise string in column

    ok thanks
  4. S

    Filter on likewise string in column

    okay fine is there any possibility to add one more criteria in my given code
  5. S

    Filter on likewise string in column

    yes its different, i dont want to hide i just want to filter with given conditions
  6. S

    Filter on likewise string in column

    @arnelgp, please help me on this. Thank you
  7. S

    Filter on likewise string in column

    can anybody help me on this : I Want to filter column A with name like , "ESAF", "E S A F" OR any name like "FBI *" i am trying to do below code: strName="FBI" Activesheet.Range("$A$1:$CT" & lastRow).Autofilter Field:=1, Criteria1:="=*" & strName & "*", Operator:=xlOr, Criteria2:="ESAF" i...
  8. S

    Filter on likewise string in column

    using VBA only
  9. S

    filter the value which should not start with string

    yes that is the issue for two criteria it is working fine
  10. S

    Zip files with same string found in file

    Can anybody suggest what to do?
  11. S

    Solved Effect of Screen Updating

    Its done thank you
  12. S

    filter the value which should not start with string

    I want to filter the column value which should not contain string starting with "Bank", "HDFC", "SBI" trying to do below code but not getting required results Activesheet.Range("$A$1:$CT & lastRow").AutoFilter Field:=13, Criteria1:=Array("<>Bank*", "<>HDFC*","<>SBI*")
  13. S

    I want to merge more than 30 pdf files in a folder into one pdf file

    Ok i will try that ...thank you
  14. S

    Solved Effect of Screen Updating

    Getting update , not update pop up despite of keeping "Application.screemupdating= False" in the beginning of code. Is there something else i need to keep?
  15. S

    I want to merge more than 30 pdf files in a folder into one pdf file

    No is there any other approach for that ?
  16. S

    I want to merge more than 30 pdf files in a folder into one pdf file

    getting error in handling DLL , what all refrences need to keep?
  17. S

    I want to merge more than 30 pdf files in a folder into one pdf file

    First i am creating pdf files from excel format sheet and it is getting save in one folder ....... 1)If pdf file in folder is more than 30 then it should merge all pdf files into one pdf file can anybody suggest how to do this using vba ? I did below Code: Sub CreatePdf_form() Dim str AS...
  18. S

    Zip files with same string found in file

    Hi Yes i have tried , but getting some error like file not found something thank you
  19. S

    Zip files with same string found in file

    I am trying below code, but confused how it will count one by one Hi @arnelgp, kindly look into this 1) I want to zip different different folder with same category , if file is in pdf and excel with "dbk: string in it, then it should zip both file together 2)If hdfc found then it should zip with...
  20. S

    Zip files with same string found in file

    Given code is for same files , i want for different files name in same folder
Top Bottom