How to concatenate summary in eazybi report?

Christian Michael Arizala June 2, 2015

Hi

Just want to ask if it is possible to concatenate the value of summary in eazybi. We want to take only a part in summary to produce a more flexible and detailed report.

Thanks

1 answer

0 votes
Lauma Cīrule
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 4, 2015

Hi Christian!

It is possible to add custom JavaScript code in eazyBI import settings to modify issue JSON object before importing issue into eazyBI. Please see more details here https://docs.eazybi.com/display/EAZYBIJIRA/Custom+JavaScript+code

For example the following JavaScript code would truncate the summary of all issues to first 6 characters and then add a ... in the end 

var summary = issue.fields.summary;
issue.fields.summary = summary.substring(0, 6).concat('...');

Let me know if you have further questions!
Lauma / support@eazybi.com 

Suggest an answer

Log in or Sign up to answer