simple issues selector field

hello!!
I have a simple issues selector field, which comes from scscript runner.
How can I get the summary of the issue from this field?

Hello @fabricio,

Welcome to eazyBI community!

Please find here how to define and import scripted fields with the single-issue picker:

https://docs.eazybi.com/eazybi/data-import/data-from-jira-apps/jira-calculated-and-scripted-custom-fields#Jiracalculatedandscriptedcustomfields-Single-issuepickerandmulti-issuepickerfieldimport

If issue picker field has the following code in advanced settings, eazyBI would import all the properties for the issue from the selector field.

properties_from_dimension = 'Issue'

Also, ensure that the project (for issue picker from selector field) is also imported in eazyBI.

Then you can access the summary from a scripted field issue using this formula in calculated measure:

CASE WHEN
Not IsEmpty([Measures].[Issue Standart issue picker])
THEN
[Issue].[Issue].GetMemberByKey(
  [Measures].[Issue Standart issue picker]
  ).GetCaptionWithoutKey
END

Where you replace “Standart issue picker” with your single-issue picker scripted field name

Martins / eazyBI support