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
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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.