Monthly target line on graph

Hi,

Yes, you could create a new calculated measure using CASE WHEN… THEN…END

Note that you could approach Month by this formula

CASE 
WHEN
[Time].[Month].currentmember.key = 1
THEN
10
WHEN
[Time].[Month].currentmember.key = 2
THEN
12
END

That should set the goals for January and February

Try the solution described in this community post:

Martins / eazyBI support

2 Likes