In-Table List with Highlighted Rows in Email Document
Leave feedback
NoteIn this article, we will use GroupDocs.Assembly to generate an In-Table List with Highlighted Rows report in Email Document format.
NoteThe code uses some of the objects defined in The Business Layer.
NoteThis feature is supported by version 17.8.0 or greater.
Practising the following steps you can create In-Table List with Highlighted Rows Template in MS Outlook 2013.
- Create a new Email.
- Press “Insert” tab to insert the table.
- Insert a 2x4 table.
- Click the cell you want to highlight.
- Click “Design” tab, and then select Shading.
- Save the template.
As a report developer, you are required to represent the following key requirements:
- The report must be in .eml or .msg format.
- It must add email recipient, CSS and subject of the email.
- The report must show each customer along with his orders.
- Show single Customer and his single order price in a single row.
- It must highlight the record with order price more than or equal to 400.
- It must show sum of the order prices.
- It must represent all the information in tabular form.
Customer | Order Price |
<<foreach [in orders]>><<if [Price >= 400]>><<[Customer.CustomerName]>> | <<[Price]>> |
<<else>><<[Customer.CustomerName]>> | <<[Price]>><</if>><</foreach>> |
Total: | <<[Sum(c => c.Price)]>> |
TipFor detailed technical information about syntax, expressions and report generation by the engine, please visit: Working with GroupDocs.Assembly Engine.
Please download the sample In-Table List with Highlighted Rows document we used in this article:
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.