In-Table List with Filtering Grouping and Ordering in Email Document
Leave feedback
NoteIn this article, we will use GroupDocs.Assembly to generate a In-Table List with Filtering, Grouping, and Ordering report in Email Document format.
Practicing the following steps you can create In-Table List with Filtering, Grouping, and Ordering Template in MS Outlook 2013.
- Create a new Email.
- Press “Insert” tab to insert the table.
- Insert a 2x2 table.
- Save the template.
As a report developer, you are required to represent managers’ contract information with the following key requirements:
- Report must be in .eml or .msg format.
- It must add email recipient, css and subject of the email.
- Report must show each manager along with sum of prices of his contracts.
- It must represent all the information in tabular form.
Manager | Contract Price |
<<foreach [in getContracts() .where(c => c.getDate().getYear() + 1900 == 2015) .groupBy(c => c.getManager()) .orderBy(g => g.key.getName())]>><<[key.getName()]>> | <<[sum(c => c.getPrice())]>><</foreach>> |
Please download the sample In-Table List with Filtering, Grouping, and Ordering document we created in this article:
NoteThe code uses some of the objects defined in: The Business Layer
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.