The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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 Champions.
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