Customized field values

I would like to transform (translate) the values “Breached” and “Not Breached” displayed in the Field [Issue].CurrentHierarchyMember.get(‘Time to first response Breached’).

How would the formula for the user defined calculated measure look like?

Thanks in advance.

Hi,

You can use the CASE conditions or IIF function to show translated values of the Issue properties:

IIf(
  [Measures].[Issue Time to resolution Breached]="Breached",
  "Nokavēts",
  "Nav nokavēts"
)

Kindly,
Janis, eazyBI support

1 Like

Thanks for the support Janis!