Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by visible2you

  1. visible2you

    Find Month in a cell

    Excel Formula can be deleted by user by mistake. VBA program has less probability of being deleted by accident while working on sheet.
  2. visible2you

    How to save the results of .Formula in a variable (VBA)

    Sheets("Sheet1").Range("A2").Formula = "=RoundUp(A1, 0)" result = Sheets("Sheet1").Range("A2").value Sheets("Sheet1").Range("A2").ClearContents
  3. visible2you

    Find Month in a cell

    I want to extract, paste and keep only selected range having "august" month for analysis purpose.
  4. visible2you

    Worksheets

    I need some more time. I will post details about "New", "Updated" and "Attached" by tomorrow.
  5. visible2you

    Worksheets

    I hope you will not mind ... it was my error ... Existing = OLD
  6. visible2you

    Find Month in a cell

    I want to select rectangular range which includes only "August" month. Range must start from Col A.
  7. visible2you

    Find Month in a cell

    In Col C, Date is given like this:- 1-Jun-11 2-Jun-11 3-Jun-11 4-Jun-11 5-Jun-11 6-Jun-11 1-Aug-11 2-Aug-11 3-Aug-11 4-Aug-11 5-Aug-11 6-Aug-11 I want to select rectangular range starting from Col A which includes only "August" month. What will be modified version of this program: - Sub...
  8. visible2you

    Worksheets

    I hope you can help me know, where did I mention "existing"? I will explain about "New", "Updated" and "Attached".
  9. visible2you

    Worksheets

    This can be good expression: - =IF(AND(A2=$A$1,B2=$B$1,D2=$D$1),"duplicate","") And this code can be extended to multiple rows. But how to represent this in VBA notation so that Formula does not appear on Sheet?
  10. visible2you

    Worksheets

    Let me explain "OLD" Let a=2 Do If AND { Sheet2 (An) = Sheet1(An+a), Sheet2 (Bn) = Sheet1(Bn+a), Sheet2 (Dn) = Sheet1(Dn+a) } Then Sheet2 (Jn+a) = "Old" a = a+1 Loop until each cell in a row = "". End Here, n refers to n rows I will provide detail to other definitions shortly. I...
  11. visible2you

    Worksheets

    Let me explain "Duplicate" Let 'a' increments a row number by 1 If AND { Sheet2 (An) = Sheet2(An+a), Sheet2 (Bn) = Sheet2(Bn+a), Sheet2 (Dn) = Sheet2(Dn+a) } Then Sheet2 (Jn+a) = "Duplicate" a = a+1 Loop again "IF" aforesaid End Here, n refers to n rows
  12. visible2you

    Worksheets

    ***** CORRECTION ***** If AND { Sheet1 (Col A) = Sheet2(Col A), Sheet1 (Col B) = Sheet2(Col B), Sheet1 (Col D) = Sheet2(Col D) } Then Sheet2 (Col J) = "OLD" ***** CORRECTED *****
  13. visible2you

    Worksheets

    I am sorry ... above is applicable for "OLD".
  14. visible2you

    Worksheets

    If AND { Sheet1 (Col A) = Sheet2(Col A), Sheet1 (Col B) = Sheet2(Col B), Sheet1 (Col D) = Sheet2(Col D) } Then Sheet2 (Col J) = "Duplicate"
  15. visible2you

    Worksheets

    Number Customer Name Date sold Product sold Product Feedback Date returned Defective Product Date Repaired Product Error Number Comments 111111 ABC 1 03-09-2011 Apple 1 Happy Not Applicable Not Applicable Not Applicable Not Applicable 111112 ABC 2 03-09-2011 Apple 2 Happy Not Applicable Not...

Part and Inventory Search

Back
Top