Recent content by suryu

  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 ?
Top Bottom