Status
Not open for further replies.

Biffo

New Member
Outlook version
Outlook 2016 32 bit
Email Account
Exchange Server
There appears not to be any way to find out in which folder a message is located, when found by search (OL 2016 and, I believe 2013).

Picture this:
You search for a message you've sent (to:mum) and Outlook comes up with a list. You've already got the column header 'In Folder' and all your messages to mum are listed as being in Sent Items.

You've got a dozen accounts set up: how do you find out in which Sent Items folder your message resides?

I have researched this fairly widely and there is No Published Answer that works and applies to OL 2016, as far as I can tell.

N.B. 1) The precise search specificed above is Not The Only Search I'm interested in -- a generally-applicable answer is what many people, besides me, are looking for. So please don't say, "Open the message and see which account it was sent from". This doesn't answer the question because, for example:
i) the message may have been moved
ii) it's not a general answer
iii) Outlook can behave quite perversely wrt filing if you have many accounts and a non-default configuration of data files that contain their messages.

N.B. 2) If you're the sort of person who says things like, "I really don't understand why you would want to know that", please just say it to yourself and move on. On the other hand, if you have a way in which this obvious, simple, necessary, idiotic-not-to-make-it-clear-in-the-first-level-of-the-GUI-how-to-achieve-it requirement can be met, I will worship at your feet if you tell me.

Many thanks,
 
OL 2016 and, I believe 2013).
... or older.

Yeah, this is a "known issue". Instant search & the 'in folder' field will show you the folder name of the selected item but nothing more. (it's also on the Properties field of the item)

This is one way around it: How to Find Folder Paths in Outlook Mailboxes - Outlook Tips - it still works in 2016.

A simple macro will list the full path (of the selected item):
Sub FindMessagePath()
Set objItem = Application.ActiveExplorer.Selection.Item(1)
MsgBox objItem.Parent.FolderPath
End Sub

You could open the folder, but that takes a bit more code - Michael has a code sample here (this works with open or selected item):
Get the Message Folder - VBOffice
 
Hi Diane, this workaround doesn't seem to be working for me. Is there somewhere a detailed step-by-step guide? I'm afraid I'm doing something wrong.
 
That's the advanced find method? What happens when you try? Do you have all updates installed? Advanced find was removed from a 2016 build over the summer but its back in current builds. The video at the link shows how to do it -

run instant search, open found item. If you know the data file and just need the folder name, look on the File tab. If you need to find where the folder is, click Ctrl+Shift+F to open Advanced find.

current-folder.png


the folder the message is in is listed in the In folder field. Click browse to see where that folder.


find-path.png
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
Commodore Search cannot complete the indexing of your Outlook data Using Outlook 6
V Cannot search multiple calendars at once Using Outlook 2
C Cannot use 'Search In' with a .pst file Using Outlook 0
J Cannot search items within shared calendar Using Outlook 0
M Search message, then (1) Jump to folder & (2) Select message that you searched for Outlook VBA and Custom Forms 2
G Search Folders and Jump to Folder Outlook VBA and Custom Forms 2
A 'search people' now asks me to 'press enter' Using Outlook 8
A Relocate Search Bar in Outlook Using Outlook 2
A Search folder and move the email Outlook VBA and Custom Forms 0
farrissf Outlook 2016 Optimizing Email Searches in Outlook 2016: Seeking Insights on Quick Search vs Advanced Search Features Using Outlook 0
C Advanced search terms for "Outlook Data File" Using Outlook 1
T How to find or display the sub-folder name for an Archive Search Using Outlook 10
P Search folder: all emails sent to or from a domain Using Outlook 1
T Outlook365 search item listed as "potential matches" can't be opened Using Outlook 0
Victor_50 Outlook 2019 Jump to folder from search folder Outlook VBA and Custom Forms 0
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
Witzker Outlook 2019 Macro GoTo user defined search folder Outlook VBA and Custom Forms 6
J Outlook search bar in Office 2021 Professional Using Outlook 1
T Outlook 365 Search Box reverting to old location Using Outlook 2
P Outlook 2013 search no longer works Using Outlook 2
C How to search for items in Outbox with multiple accounts? Using Outlook 20
J search doesn't find anything Using Outlook 1
kkqq1122 How would I add Search for attachment name Outlook VBA and Custom Forms 3
A Any way to force sort by/group by on search results with VBA? Outlook VBA and Custom Forms 1
B Search and Find Email by Folder Name Outlook VBA and Custom Forms 2
C Search not accurate, but not indexing Using Outlook 9
J How do you disable address search box when typing @ in body of email? Using Outlook 0
H Outlook 2019 intermittent search results Using Outlook 0
D Create advanced search (email) via VBA with LONG QUERY (>1024 char) Outlook VBA and Custom Forms 2
D Advanced e-Mail search on from/to contact group only searches for first 20 contacts in group Using Outlook 0
mll persistently customise columns in outlook advanced search Using Outlook 3
S vba outlook search string with special characters Outlook VBA and Custom Forms 1
S VBA search string with special characters Outlook VBA and Custom Forms 1
H Search Email Header for Content Type Outlook VBA and Custom Forms 1
P Posts in Folder No Longer Group by Conversation Column After Search Using Outlook 0
O Advanced search - can I use booleans Using Outlook 3
Y Filter unread emails in a search folder vba help Outlook VBA and Custom Forms 0
M Reverting The Outlook Search Box Location (or other undesired additions) Using Outlook 1
M Something went wrong and your search couldn't be completed Using Outlook 1
M Disable Contact Card Results when using "Search People" in Outlook Ribbon Using Outlook 7
J outlook 2007 doesn't let me choose which .pst to search Using Outlook 2
P outlook 2008 search box criteria couldn't be saved Using Outlook 2
C Outlook with Office365 - search across account, by date rate, in multiple folders - how? Using Outlook 2
D Custom Search Folders not refreshing/updating automatically Using Outlook 0
L New Location for the Search Bar Using Outlook 6
T How can you include Junk Email in Search Results like you can include Deleted Items? Using Outlook 3
J Outlook 2016 After a search in all mailboxes, where is each message that was found? Using Outlook 6
King Mustard Sort search groups by amount of items? Using Outlook 1
V Outlook 2016 will not move emails in search results Using Outlook 4
T Search for incoming e-mails for a specified time range Using Outlook 1

Similar threads

Back
Top