Found this code in the web added to outlook, but not not results.
Code:
Thank you,
Code:
VBA Code:
Sub SearchBetweenDates()<br><br>strStart = InputBox("Enter Start date", "Enter date in yyyy/mm/dd format")<br>strEnd = InputBox("Enter End date", "Enter date in yyyy/mm/dd format")<br>strCategory = InputBox("Enter Category", "Enter category name")<br><br>txtSearch = " received:>" & strStart & " <" & strEnd & "category:=" & Chr(34) & strCategory & Chr(34)<br><br>End Sub
Thank you,