Making certain nth record bold

Hello Helical Insight Team,

I am using Helical Insight 4.1 GA enterprise version. We are using canned reporting module to create the canned reports.
We have a specific requirement in which we want to display and make every Nth record bold?

**Example :**In my canned report, every 5th multiple of the employee ID row values should appear in bold

Thanks,
Netta.

Hello Netta,

Step 1 : Drag required fields and add them twice on report canvas.

Step 2 : For below row apply bold for the text field

image

Step3 : Add the following condition in Print When Expression ( We have applied validation for employee_id column)

$F{employee_id}%5!=0

image

Step 4: Add the following condition to the Print When Expression (BOLD text column)

$F{employee_id}%5==0

image

Note: We should apply the respective logic for bold (other columns) and non-bold text columns.
In our report we used 5. It can be used any number based on your report.

Report in open mode : Every 5th multiple of employee ID rows is showing in bold

image

Thank You,
Helical Insight Team.