Search for email containg attachment of specific file type

12

1

I'd like to search for an email that contains an excel attachment. I'm using outlook.

I know I can do

hasattachment:true

but this matches any attachment type

I've also tried,

attachment:*.xlsx

but this doesn't work

Nathan Koop

Posted 2009-10-19T17:04:18.120

Reputation: 579

Answers

13

It's a little backwards, but you can do this with

xlsx hasattachment:true

rob

Posted 2009-10-19T17:04:18.120

Reputation: 13 188

1This worked well. I did however get one false positive though, but it has reduced my searching time down a lot. Thanks – Nathan Koop – 2009-10-19T17:16:00.343

5

I just tried this and it works well:

ext:xlsx

netbugz

Posted 2009-10-19T17:04:18.120

Reputation: 51

3

Try this - it's just slightly different than what you tried and it works for me. Via the documentation.

attachments:.xlsx

Peter Nore

Posted 2009-10-19T17:04:18.120

Reputation: 1 642

1

You can search for emails with (for example) Excel spreadsheet attachments by using the following:

filename:xlsx

This is documented in the Advanced Search page.

Sonia Hamilton

Posted 2009-10-19T17:04:18.120

Reputation: 445