• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. Deepak

    VBA Code to Detect Non Password Protected Attachment

    Are u looking vba code to check upon each email sending from outlook and what will the file types to check.
  2. Deepak

    NEED HELP "FILTER" OPTION

    Or, This would be far better.. =IF(SUBTOTAL(3,$A$6:$A$26)<>COUNTA($A$6:$A$26), INDEX($A$6:$D$26,MATCH(SUBTOTAL(105,$A$6:$A$26),$A$6:$A$26,0),4),"")
  3. Deepak

    NEED HELP "FILTER" OPTION

    Check this... =INDEX($A$6:$D$26,MATCH(SUBTOTAL(105,$A$6:$A$26),$A$6:$A$26,0),4)
  4. Deepak

    How to Get only first Date of a month in Text box .

    A Native approach. TextBox1.Value = Format(1 + Application.EoMonth(Date, -1), "mmm dd yyyy")
  5. Deepak

    Identify Back Date Entry / Deals - Volume Report

    Can we have a sample file.
  6. Deepak

    Email issue on duplicate email address

    Hi, Below line is checking that email will not send to any email duplicate email in said range on each loop. If WorksheetFunction.CountIf(Range("C8:C" & cell.Row), cell) = 1 Then What you want in case of multiple existence... Send email to all if duplicate - then just remove that line and...
  7. Deepak

    Help with Macro To Organize Gas Chromatography Instrument Data

    Hi, Pls find... Feeling sleepy so I will do rest later like as data compile from folders and colors... Do let me know for if any changes required. Option Explicit Sub DataProcessingV1() Dim r As Range, iFristBlock As Integer, oFind As Range, oRnageToHide As Range, oRangeBold As Range Dim...
  8. Deepak

    Help with Macro To Organize Gas Chromatography Instrument Data

    You will get an update soon...
  9. Deepak

    Adding Expiration Date and Days Left to Expire Problem

    Hi, Pls check it and fell free ask if any issue occurred. To check it without manually changing system date just remove Int from here Int(FileDateTime(Me.FullName)) Private Sub Workbook_Open() Dim exdate As Date, mbox As String Application.Visible = False...
  10. Deepak

    GSTR2A RECONCILIATION

    Hi, Put below in S2 and drag below. =IFERROR("Error - "&INDEX($D$2:$J$2,1,INDEX(MATCH(FALSE,D3:J3=L3:R3,0),,)),"OK-Matched") or =IFERROR("Error - "&INDEX($D$2:$J$2,1,SUMPRODUCT(MATCH(FALSE,D4:J4=L4:R4,0))),"OK-Matched") Both are the same formula just two different non CSE approach.
  11. Deepak

    GSTR2A RECONCILIATION

    Check cleartax they have the advanced software based for accuracy.
  12. Deepak

    Merge multiple Sheets into one

    Will you pls share a sample file and expected output so that we may suggest a alternate method if available...
  13. Deepak

    Userform Login for Multiple Level User - Customized Spreadsheet

    Pls let me know the current issues..
  14. Deepak

    Draft Mail

    Hi Please check this...
  15. Deepak

    Message Box Always on Top

    Ya correct!! I was just compelling that nothing wrong with our end barring op.
  16. Deepak

    Combined Coded letters in one cell

    Shaji Panchali If i understand this!!! If your excel version support textjoin function then check it.
  17. Deepak

    Message Box Always on Top

    dparteka Have a more depth look... vbSystemModal- This suspends all the applications till the user responds to the message box. http://www.vbforums.com/showthread.php?25670-Message-Box-Always-on-Top https://www.aspfree.com/c/a/VB.NET/Mastering-the-Message-Box/...
  18. Deepak

    Message Box Always on Top

    Nothing wrong with the installation barring the correct copy paste as vbsystem modal
  19. Deepak

    Message Box Always on Top

    Dear @dparteka So you are mixing the two threads in between which should to avoid. Indeed my lastest upload was also working as desired here too. Changes made by you should also to work if you focused on depth irrespective of just copy paste.
  20. Deepak

    Idle Time Message Box with Counter

    dparteka Pls check this as a bit more friendly... It will count the time after change event end.
  21. Deepak

    Update Data from Drop Down List on Source Changes

    cperez Seems this possible by VBA but you have asked in excel section. Do i move the thread there?
  22. Deepak

    Idle Time Message Box with Counter

    Pls check this...
  23. Deepak

    Userform Login for Multiple Level User - Customized Spreadsheet

    Glad to know that. Let me know any issue without hesitation.
  24. Deepak

    Userform Login for Multiple Level User - Customized Spreadsheet

    If Not Application.Intersect(Target, Cells()) Is Nothing Then Change it to check... If Not Application.Intersect(Target, Target.Parent.Cells()) Is Nothing Then
Back
Top