Search results

  1. A

    How to save emails to a specific folder on a network automatically using a macro

    The issues that i'm having is that when the for loop starts it seems to be starting on random emails picking random dates.. for instance if my last received e-mail is 12/09/2014 it will either pick that date and loop a few times and end up in a date like 12/03/2013 in only a few loops. It seems...
  2. A

    How to save emails to a specific folder on a network automatically using a macro

    I was thinking maybe that had to do something with the issues i'm having since item.senton is being used instead of the actual received time(Item.ReceivedTime) of the email itself. I'm just basing this on assumptions not really sure if it is the reason.
  3. A

    How to save emails to a specific folder on a network automatically using a macro

    The item variable is being set inside of the loop since i can use item.senton but nor item.receivedtime below is the loop in the code with the new requirements that were presented to me recently. Please let me know if you see where the problem might be happening or if you have any suggestions on...
  4. A

    How to save emails to a specific folder on a network automatically using a macro

    It's getting the same date but i think the problem is that now instead of item.receivedtime i'm using item.senton because once i put in the code for i = inbox.items.count 1 step to -1 the item.receivedtime property no longer is recognized.
  5. A

    How to save emails to a specific folder on a network automatically using a macro

    thanks, i tried that and its working now when i input a date to select emails for that date i used the same method but the problem now became that when i input a date that is 3 months back or 5 months back the macro runs but it doesn't extract the attachments form these emails. Do you know of...
  6. A

    How to save emails to a specific folder on a network automatically using a macro

    I'm also working on a similar project but mine has to actually download emails with an exact date or even within a date range if that's possible. the following is the code i have and it works but my issue is when outlook looks at the "received date" or the email it finds a random date and...
Top