Hello All,
I am stuck in problem where I need to fetch mails only for current month’s 2nd week. I am using desktop outlook activity and Get outlook mail messages in my workflow.
In filter expression am using ["[ReceivedTime] >= ’ " +now.Month.ToString+ " ’ "] to get current month’s emails…
I tried with this expression also [“[ReceivedTime] >= '” + ate.Now.AddDays(-14).ToString(“dd/MM/yyyy”) + “’ AND [ReceivedTime] < '” + Date.Now.AddDays(-7).ToString(“dd/MM/yyyy”) + “ ’ ”]. Its not working
How to fetch Current month’s 2nd week emails only?