• 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. D

    Datavalidation help: change value based on another datavalidation

    Hi All, I have a named range as datavalidation in one cell and in another range I have the same named range. I would like to change the second data validation based on first one. Eg: In Cell A1 I have first data validation and in B2 i have second data validation. Both of them have same...
  2. D

    Remove excess formatting with macro

    Hi Gaurang, Fixed.See attached file for reference. -Dinesh
  3. D

    Remove excess formatting with macro

    Hi Gaurang, You have to change the date format to 23/08/2014 Thanks, Dinesh
  4. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, We cannot add CC to a task item. I am not sure.To change the TAT change the due date as below .ReminderTime = wsht.Cells(counter, 3).Value .DueDate = wsht.Cells(counter, 3).Value -Dinesh
  5. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, No Problem . Glad to help you. Have a good day . -Dinesh
  6. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, Finally its working after a week's time. Sending multiple remainders is not possible if we do manually so we cannot implement the same using vba. Thanks, Dinesh
  7. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, Can you test the below code . It is the same as I originally posted I have added a extra line (Const olTaskItem = 3). Let me know if it works and if you want to change the due and remainder dates. Sub SendRemainders() Dim wbk As Excel.Workbook Dim wsht As Excel.Worksheet Set wbk...
  8. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurag, Can you type OutLookMailItem. and see whether it has assign property? type after Set OutLookMailItem = OutlookApp.CreateItem(olTaskItem) -Dinesh
  9. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, Can you post the error description. Thanks, Dinesh
  10. D

    Calculate TAT & Send reminders with help of MACRO

    Hi Gaurang, yes you can change the code to target date by referring to that cell. On the debug error I tested the code in my computer it works well. Which version of Outlook do you have? and also can you post the error description.you can get the error description by typing err.description in...
  11. D

    Need help in Getting the selected items of a Pivot table filter

    Thanks a ton Hui the code worked well.
  12. D

    Calculate TAT & Send reminders with help of MACRO

    Forgot to add Paste the below code in the workbook Sub SendRemainders() Dim wbk As Excel.Workbook Dim wsht As Excel.Worksheet Set wbk = ThisWorkbook Set wsht = wbk.ActiveSheet Dim OutlookApp As Object Dim OutLookMailItem As Object Dim counter As Long Set...
  13. D

    Calculate TAT & Send reminders with help of MACRO

    Hi, Please use this formula in range C5 to C16. =$F$3+RIGHT(D5,FIND("+",D5,1)-1) Thanks, Dinesh
  14. D

    Need help in Getting the selected items of a Pivot table filter

    Hi All, I need help in getting the selected items from a pivot table report filter. I have Country field in my report filter and I have multiple selections . I want to get through code what are the selections made by user. I am attaching a screenshot for reference.
  15. D

    Help required to Rank Numbers Positive to Negative

    Hey Narayank, thanks a lot for the Quick reply.. Formula works great. Thanks Again. -Dinesh
  16. D

    Help required to Rank Numbers Positive to Negative

    Hey All, I have a scenario where I have to rank positive to negative and also to ignore zero's. I have attached a sample workbook. Any help would be much appreciated. -Dinesh Download link for sample wbk: http://www.fileconvoy.com/dfl.php?id=gd08bec0452a32e45999269815da70cd365334f4c5
  17. D

    Need help Downloading a file from Webpage using VBA

    Thanks shrivallabha .. I will check and if I find the answer i will post in the same thread .. it might be useful to others.
  18. D

    Need help Downloading a file from Webpage using VBA

    @Suresh The website has only one button it does not have range. When I click the button it gives me a pop window where I have click "Download option" to save the file locally. @shrivallabha This is my corporate website so i am not sure of sharing . IT would be similar to bank websites where we...
  19. D

    Need help Downloading a file from Webpage using VBA

    Hey Suresh, Not sure How to do that. Its a external website . -Dinesh
  20. D

    Need help Downloading a file from Webpage using VBA

    Hey Suresh, The popwindow says click to download? Can i download directly by using data connection? -Dinesh
  21. D

    Need help Downloading a file from Webpage using VBA

    Hi All, I have written a module to login into a webpage, do some operations to pull a report using VBA. I need help in downloading the file in IE. When i click the download option a pop window opens and I am not sure how to connect it in VBA. Thanks in advance. Thanks, Dinesh
  22. D

    Welcome new Excel Ninja - Faseeh

    Hi Faseeh, Congrats and Thanks a ton for your contribution towards excel community. -Dinesh
  23. D

    count conditional formatted cells

    Hey xljgd, Do you want to count the colored cells in arange A5 to A9 (posted example)? -dinesh
  24. D

    Pivot table Show only one option

    ok Hui.. I will give a try .. Thanks a lot for your help and Quick reply.
Back
Top