Page Count Search Syntax
Advanced search syntax can be used to search for documents with a particular number of pages or a number of pages that fall within a particular range. When searching for a page count, you can customize your search using advanced search operators and wildcards.
- {LF:PageCount = Value}
Value must be an integer that represents the number of pages in your target documents.
Show me examples.
The following search will return all documents with more than 50 pages.
- {LF:pagecount > 50}
The following search will return all documents with less than or equal to two pages.
- {LF:pagecount <= 2}
Using the AND (&) operator to combine searches, the following search will return all documents with more than five and less than ten pages.
- {LF:pagecount > 5} & {LF:pagecount < 10}