Recent content by Kartyk

  1. K

    Extract email to excel from a specific sender

    Its working now. However, there is a concern. Although, emails dont get pulled up in the spreadsheet, empty rows can be seen, This is cuz I is defined prior to If condiition. Is there a way to only list emails from the ID and avoid all empty rows ? Thanks
  2. K

    Extract email to excel from a specific sender

    Thanks for your response. However, code picks all emails if condition doesnt seem to work ... Not sure if am missing something here
  3. K

    Extract email to excel from a specific sender

    Hi, Looking to extract email from outlook from a specific sender. Can anyone please suggest modification to the code pls. Dim olApp As Outlook.Application Dim objNS As Outlook.Namespace Set olApp = Outlook.Application Set objNS = olApp.GetNamespace("MAPI") Set myolItems =...
  4. K

    Sharedmail box

    Hello... Any luck with this one please ?
  5. K

    Sharedmail box

    I have tried with many. No one understands the Shared mailbox all that well. I need a code to look through replies or forwards, from all users, sent through shared mailbox. Could anyone please respond with the apt code ?
  6. K

    Sharedmail box

    OK, thank you. Could you please help me with the code to find the reply item sent from shared mailbox. This would be wonderful for the project working on. Regards Karthik
  7. K

    Sharedmail box

    Hi, The below verbs doesnot seem to work on shared mailbox. Emails are responded through shared mailbbox but still none of the replies or forwards are captured. EXCHIVERB_REPLYTOSENDER = 102 EXCHIVERB_REPLYTOALL = 103 EXCHIVERB_FORWARD = 104 I need the original email item and replies on the...
  8. K

    VBA to measure response time for each emails in a shared mailbox

    actually, it was for a different code i was working on... although I would want the same feature in both the codes. No error messages as such, just that I find data only from one of the folders. May be it is overriding data..not sure Heres the one I tested now. Dim olApp As...
  9. K

    VBA to measure response time for each emails in a shared mailbox

    Unfortunately, it still does not pick from both the folders. It is picking only either or those.
  10. K

    VBA to measure response time for each emails in a shared mailbox

    I think IT admin should be running those cmdlets and i have escalated it to them. Thanx. On a different note, i want to pick emails from multiple folders within Inbox. Set ns = myOlApp.GetNamespace("MAPI") Set olsharename = createrecipient("Mailbox name") Set myFolder =...
  11. K

    VBA to measure response time for each emails in a shared mailbox

    Thank you. yeah , i tried setting outlook to send emails from shared mailbox. Currently, emails I send outta shared mailbox are stuck in outbox. I tried troubleshooting using online methods. So far i am not succesful So far I taken care of the below : DelegateSentItemsStyle registry value...
  12. K

    VBA to measure response time for each emails in a shared mailbox

    HI, Not sure I understand correctly. Responses are sent from personal inbox of respective users and thus it does not even appear on sent items of shared emailbox. Somehow the solution must look at the thread and identify the responses for all such users who send responses. Or Emails sent...
  13. K

    VBA to measure response time for each emails in a shared mailbox

    Hi All, i have put together a macro to measure reponse time taken for an email response in a shared emailbox. it works fine in picking all the items from inbox but fails to pick any email sent by users. Email goes from personal inbox. Here is the macro for understanding. Can anyone please...
Back
Top