• 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

    Help to copy the data from multiple Workbook to Single Workbook

    This might help you. https://chandoo.org/forum/threads/merge-sheet1-from-multiple-workbook-using-single-connection.33746/ You may ask the author after understanding the concept for further help.
  2. Deepak

    Starting Power Pivot

    In Chrome: Need to hit (Load Unsafe) the Warning from top right of the address bar! After Strange!! Site also showing warning of non secure. After allowing in ie no sign of non-secure. It may be due to forum fetching the video by a http method over https layer but behavior should be...
  3. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    Seems issue in video embedding. https://www.youtube.com/watch?v=yUndp9hJ_0c
  4. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    A must watch video regarding pivot table to auto individual sheets based out the filter.
  5. Deepak

    (excel range to new mail) Loop and read range and copy those ranges into new email

    Pls be specific about named range.
  6. Deepak

    System becomes slow

    If the pc became slow after the macro then it might chances that memory has not been cleared. https://stackoverflow.com/questions/14396998/how-to-clear-memory-to-prevent-out-of-memory-error-in-excel-vba http://dmcritchie.mvps.org/excel/slowresp.htm
  7. Deepak

    System becomes slow

    When extensive task to do then more resources are required! To come out the issue pls ensure that You have cleared all unnecessary cells, formats like stuffs from the workbook. You have closed the other stuff to free more ram. Tasks run one by one on order with a sleep of time & before running...
  8. Deepak

    Excel Crashes after running code.

    In which workbook Sheets("General Info") exits? Change it & check Len(.Range("B2").Value)>0 In which workbook renaming being happen? Loop also not required in fast galnce.
  9. Deepak

    Sheet names on multiple rows in a workbook

    I have doubt on that via excel way. To show all the sheet names just right click on the arrow at the bottom left side of screen. Will you pls share a snap what you actually looking for.
  10. Deepak

    Incorrect format in e-mail draft for excel range

    Which xl version you are using.
  11. Deepak

    VBA Reference question

    Hi Usually do but also matters if that functionality has not been removed from the upper version. Best help you may test the run on difference version of excel as well posting here will also help you in that.
  12. Deepak

    Invoice Automation

    ashish mehra Header should be same in the bold file as per invoice. I have linked the "Invoice-Leasing" sheet If every thing is ok then few line of code will make it automatic. >Make sure base dump is open. >Make a list of Invoice Id's. >Start looping it. >Do Advance filter & pate data to...
  13. Deepak

    Invoice Automation

    how about invoice number (columns AI)??
  14. Deepak

    Embed excel sheets in outlook body

    I think he is looking for RangetoHTML like thing!! https://www.rondebruin.nl/win/s1/outlook/bmail2.htm
  15. Deepak

    Invoice Automation

    You are looking automated invoicing based base data but bit confusing here. Think how will u share the idea of invoicing to novice & then write it here!
  16. Deepak

    Interesting/Useful _VBA/Excel links over the internet

    Built in dialog boxes http://excelatfinance.com/xlf/xlf-xl-built-in-dialog.php https://msdn.microsoft.com/en-us/vba/excel-vba/articles/built-in-dialog-box-argument-lists
  17. Deepak

    Quick Tips

    The following code example opens an e-mail message in Microsoft Outlook with the current workbook attached. Shortest code ever!! Sub SendIt() Application.Dialogs(xlDialogSendMail).Show arg1:="ask@mrexcel.com", arg2:="This goes in the subject line" End Sub ref ...
  18. Deepak

    Creating UserId and Password.

    Something like... Option Explicit Public Const wks As String = "ABCD" Public Const wksPassword As String = "123" Public Const UserRange As String = "RAM,SHYAM" Public Const UserRangePassword As String = "1,2" Public vRng As Variant, vPass As Variant Sub...
  19. Deepak

    Code for outlook mail attachment

    Some confusion.. Initially asking for attachment latter groping of email id.
  20. Deepak

    Code for outlook mail attachment

    This might helped you... http://forum.chandoo.org/threads/outlook-mail-with-multiple-attachments.34667
  21. Deepak

    Not able to delete columns ‘Delete method of Range class failed’

    RawSt <>RawSht If not the typo error then both are the different name in your statement.
  22. Deepak

    .bodyhtml property

    Check it. https://stackoverflow.com/questions/36211195/outlook-email-and-signature-from-excel-vba-body-vs-htmlbody
  23. Deepak

    error '13 ' en tiempo de ejecución. No coinciden los tipos

    Post other than English are seems like spam.pls edit it in English .
  24. Deepak

    Excel VBA to import outlook shared calendars

    It will also help!! https://stackoverflow.com/questions/38881349/loading-appointments-to-a-non-default-outlook-calendar-from-excel
Back
Top