Search results

  1. S

    Zip files with same string found in file

    In one folder(F:\Bank\Formdetails\) multiple files are there in pdf and excel format, want to zip only if same string name found in pdf and excel 1) If excel name is "Dbk_bank.xlsx" and pdf is "Investor_Dbk_bank.pdf" then it should do zip in path (F:\Bank\Formdetails\) with name Dbk.zip 2)If...
  2. S

    Solved Filter on past one month date

    After removing SubField:=0, It is working fine ...thank you :)
  3. S

    Solved Remove duplicates row on basis of certain condition

    This code is working fine . Thank you :)
  4. S

    Solved Filter on past one month date

    I am working on project which should open workbook and filter column on the given criteria using vba thank you
  5. S

    Solved Filter on past one month date

    Hi @arnelgp , could you please help me on this thank you
  6. S

    Filter on likewise string in column

    I Want to filter column A with name like "ESAF", "E S A F" OR any name like "FBI *" column contain "ESAF", "E S A F" or ("FBI Bank", "FBI Bank ltd", "FBI Finance ltd" can be more with FBI*)
  7. S

    Solved Filter on past one month date

    Hi anybody please help me on this: i have column name Orderdate and i want to apply filter from last month till yesterday date if today date is 07/18/20 then it should filter from 06/18/20 to 07/17/20 confused how to do autoflter
  8. S

    Solved Filter on past one month date

    Hi anybody please help me on this: i have column name Orderdate and i want to apply filter from last month till yesterday date if today date is 07/18/20 then it should filter from 06/18/20 to 07/17/20 confused how to do autoflter
  9. S

    Solved Remove duplicates row on basis of certain condition

    Hi approach is correct but it is deleting all rows please find screenshot below for output result i want SR Loan_number ID bank_name city 1 1110002 234 DB bank 2 1110002 445 -need to delete as city and bank_name is empty 3 1234000 66 NY 4 1234000 344 -need to delete
  10. S

    Solved Remove duplicates row on basis of certain condition

    Hi, need to delete whole row please find below screenshot SR Loan_number ID bank_name city 1 1110002 234 DB bank 2 1110002 445 - need to delete as nothing is there in bank_name & city 3 1234000 66 NY 4 1234000 344 -need to delete
  11. S

    Solved Filter on past one month date

    Working on lookup main file data from another workbook data contains order date ->lookup is only for last one month data , want to filter Order Date column for the past one month date format(ex- 06/10/2020 to 07/11/2020)
  12. S

    Solved Remove duplicates row on basis of certain condition

    I want to remove duplicates loan number from column B only if column name D "Bank Name" is blank or column name " City" is blank using vba
  13. S

    Solved convert folder to zip file

    Could you please chk my post again there itself i have edited
  14. S

    Solved convert folder to zip file

    mentioned complt requirmnt
  15. S

    Solved convert folder to zip file

    I have folder with same today date want to covert that folder to zip and attach to mail using vba. I have sub folder inside folder name 2020, with today date and there are pdf files are inside that like below scrrenshot in datefolder loan pdf files are there, and in excel folder same count...
  16. S

    set filter range value with other value

    yes its done
  17. S

    set filter range value with other value

    I want to set Range("E") of excel after filter with values "Duplicate" using vba Can anyone help me with this?
  18. S

    Filter excel data based on another workbook range

    I did below code but facing error Sub Investor_Code() Dim wsDest As Worksheet Dim ws As Worksheet Dim LrowData As Long Dim Autofiltng As Range Dim Rng As Range 'Destination Set ws = ThisWorkbook.Sheets("sheet1") Set wsDest = Workbooks("Investor_code.xlsx").Worksheets("Sheet1")...
  19. S

    Filter excel data based on another workbook range

    Hi I have two workbook and i want to filter one column range only if that value present in another workbook 1)Please find below screenshot, it is present in workbook investor_Code 1)On the basis of above investor code i want to filter below workbook data which is Loan_Details
  20. S

    Zip excel file rowwise data to pdf format

    yes have to research lot of things
Back
Top Bottom