2

I'm trying to search cases using the "attachment:" axis.

I was hoping I could use:

attachment:*.xls project:foobar

But search translates this to a literal "*.xls" instead of wildcard.

What am I doing wrong here?

flag

1 Answer

2

Try

attachment:".bz2" OR attachment:".zip"

or the more concise equivalent:

attachment:.xls project:foobar

You can, obviously, even use fancier logic:

`attachment:".bz2" OR attachment:".zip`
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.