Forum Discussion

danextian's avatar
danextian
Icon for Super User rankSuper User
7 years ago

Datetime an email was replied in Exchange

Hello,

 

We are exploring a shared mailbox in Outlook and trying to calculate how long it takes before an email gets replied to. I connected to outlook using Exchange connector in Power BI and been trying to find where the "reply to" information is. I expanded the Attributes column but it is not there.

4 Replies

    • danextian's avatar
      danextian
      Icon for Super User rankSuper User

      Hi Lin,

       

      Thank you for your response and my  apologies for getting back late. 

      I checked on the links you've posted but none of them works for my use case.  I though I could use the ConversationTopic attribute to group the emails but realized that a topic can have the same name as other topics (if only the connector also exposes the conversation id).  My goal now is to get the first email in the conversation from Inbox folder. I could probably make use of ConversationIndex attribute but it is in binary format. Would you know how to extract data from it?

      • Anth79's avatar
        Anth79
        Icon for Advocate I rankAdvocate I

        To make a unique ID, where i could still see topic, i concatentated Conversation ID (first 6 characters was enough) and Topic.

        To report on the response time i did the following, based on the new conv identifier.
        I ranked all emails, by received date and within the new conv identifier groupong and where the sender was not the shared inbox or staff members that have access to it.

        I then ranked the sent dates where the opposite, based on sender, was true.

        These were both done in separate tables, which i then merged via the conv identifier, to have a table containing only the first received and reply dates of a conversation. 
        Issue i have is our Tech dept turned off the ability to have Sent Items stored in the shared inbox, so we have to manually move them weekly. If we miss any, it cant then find the reply data for the above to work. As that property exists in the UI even when it's not in the shared inbox's sent items ("You replied to this email...") i thought it would be easy to extract but so far I have not identified it. 
        There's probably a far simpler solution, but I hope this helps 🙂