I've a situation where I need to create a custom thread of conversations dynamically but despite trying to learn writing macros, I've had no success over the last year.
In my outlook, I have a folder parallel to Inbox (called CASES). Here the emails are in following format (only showing a portion of the subject in below example):
CASE250001: Created
CASE250002: Created
CASE250001: In Progress
CASE250001: Resolved
CASE250002: In Progress
CASE250002: Resolved
I'm trying to recognize thread by searching title with a sort of regex like "CASE\([0-9]\+\):"
where each unique number becomes a different thread like below
CASE250001:
-- CASE250001: Created
-- CASE250001: In Progress
-- CASE250001: Resolved
CASE250002:
-- CASE250002: Created
-- CASE250002: In Progress
-- CASE250002: Resolved
The most I was able to do was read the list of regex, but am unable to either sort or create threads accordingly.