I have a simple Average Resolution Days Tracking report where I am tracking the Average Resolution Days for Issues with P1-Stopper and P2-High priorities.
I trying to plot a fixed guideline for each of the Stopper and High priorities which is 14 and 42 days respectively. I have defined 2 calculated members, P1-Stopper Guideline and P2-High Guideline where I have only assigned the respective values 13 and 42 days.
[Measures].[P1-Stopper Guideline] = 13
However, when the plot is finally being done I see 2 guidelines getting created automatically and I can’t even manipulate the values of the automatically created guidelines.
Thank You for your response. I made some tweaks to the above code,
CASE WHEN [Priority].CurrentMember.Name = “P1-Stopper”
THEN 13
END
After this it returned empty values for automatically generated P1-Stopper P2-High values and the P2-High P1-Stopper values. On the suggestion of EazyBI support team I got rid of these empty values I used the Hide Empty Option and was able to get rid of the extra columns.