• 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

    Congratulations New Ninja - Vletm

    Welcome buddy!
  2. Deepak

    Unable to Toggle Check Boxes in Excel 2010

    Hi, It seems a Microsoft office update issue which corrupted the forms2.0 library. Pls check this. https://support.microsoft.com/en-in/help/3025036/cannot-insert-object-error-in-an-activex-custom-office-solution-after
  3. Deepak

    Matching closest date with two sets of data

    Hi, Not always smaller is memory efficient. I think both will slow down the process for such a big range. You can check the performance in a copy file. I would suggest VBA for such big tasks.
  4. Deepak

    Compile Error : Can't find project or library

    Agreed! And we always play in blind due to his two negative approach. 1. Never shared a valid sample file. 2. Always hook few lines of code and asked.
  5. Deepak

    Compile Error : Can't find project or library

    This is the cause of the same. Uncheck them. What is oins , Is it available there! Check in debug mode...
  6. Deepak

    Matching closest date with two sets of data

    I have uploaded the same in very 1st post.
  7. Deepak

    Compile Error : Can't find project or library

    As Narayn sated! When you get the subjected error means sharing a two line of code will not resolve. Meanwhile check any missing ref is there! How to Check : https://liberty.service-now.com/kb_view_customer.do?sysparm_article=KB0012541
  8. Deepak

    Matching closest date with two sets of data

    Can we have a sample file. You may share cloud link as well as email me & i will upload it here. imdkbj at outlook dot com
  9. Deepak

    Compile Error : Can't find project or library

    Did u notice the spelling mistake. Dim osStatussheetOBJ As Object vs Set osStatussheetOB = Nothing
  10. Deepak

    Convert Formula to function in vba

    Would u pls share the sample data so that we would offer better ways.
  11. Deepak

    Field length 14 digits long with the end 4 characters static

    =right(rept(x,14)&a1,14) Same as basco, just little sorter. Replace x with your choice char.
  12. Deepak

    Convert Formula to function in vba

    Function Split1(orng as range, optional del as string="-")as string Split1 = split(orng.value, del)(0) End function
  13. Deepak

    Need help to Loop

    The straight answer for the no response - You have failed to attract the attention due to unclear query & missing sample. Will you pls share the sample worksheet with manual approach as well as snippet of the folder.
  14. Deepak

    Formula to Capture Incomplete records

    Is this... Paste in J2 > Copy Down =IF(VLOOKUP(I2,$B$1:$E$79,4,0)=LOOKUP(,-1/(I2=$B$1:$B$79),$E$1:$E$79),"INCOMPLETE","")
  15. Deepak

    Thanks a lot Hui sir for 11,000 +

    Congrats & Keep the momentum @Hui with your passion.
  16. Deepak

    Many ribbon features not available (grayed out), and undo feature not working

    Add a new sheet in that workbook & see what happened. That worksheet might locked. Still issue, can we have the same for investigation.
  17. Deepak

    Custom UI Editor For Microsoft Office Doubt

    It might help you. <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <!-- **************************************************************************--> <!-- ****Disable 'Exit Excel' and 'Excel Options' on the Office Button menu****--> <!--...
  18. Deepak

    Validate To CC address from draft e-mail with FROM address of e-mail body

    As you already have new post for the same so i am locking it. https://chandoo.org/forum/threads/how-to-copy-partial-e-mail-body-in-excel.37075
  19. Deepak

    Validate To CC address from draft e-mail with FROM address of e-mail body

    Set myNamespace = Application.Session
  20. Deepak

    Thanks a lot Narayan sir !

    I might missed the early cells of current region to keep a note of the what tremendous job done by NARAYANK991 and i thought just 'Thanks' will not make out of stake towards his valuable contribution to the forum. @r1c1 - You might have a thought for a surprise to him on behalf of all forum...
  21. Deepak

    Validate To CC address from draft e-mail with FROM address of e-mail body

    Are you looking something like this! Sub ForaDraftEmail() Dim myNamespace As NameSpace, myFolder As Folder, myItem As MailItem Dim strBody As String, strMsg As String, varBody As Variant Dim iFrom As Integer Dim iSent As Integer Dim iTo As Integer Dim iCc As Integer Dim iBcc As Integer Dim...
  22. Deepak

    VBA Code to Detect Non Password Protected Attachment

    Check this. In ThisOutlookSession... Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim strCheck As String Cancel = True On Error GoTo xEnd strCheck = CheckAttachmentPassword(Item) If Len(strCheck) > 0 Then If strCheck <> "ERROR" Then MsgBox "Following...
  23. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    Create an online survey with Excel like as Google forms... https://wmfexcel.com/2018/01/14/excel-online-survey-never-heard-about-that/ The basic difference is that- Google forms allowed addin & File upload also introduced.
Back
Top