I have a calculated measure from a date field that shows the count of issues that transition date in the time range. But other filters on the page are not working for this measure.
Hi @C9024395
Please share the formula you use for your calculated measure.
If you use properties (from “Measures”) in formulas for your calculated measures, they could be irresponsive to page filter selection.
Martins / eazyBI
Yes, I use properties (from “Measures”). Is there any workaround?
It depends on the property and the use-case.
I recommend reaching out to support@eazybi.com and providing more details about the use-case.
Which property do you use exactly in your calcualted measrues, what are dimensions you have in page filters, what dimension you have in rows etc.
Without knowing the details you could try this approach:
CASE WHEN
[Measures].[Issues created]>0
THEN
[Measures].[Issue <field name as property>]
END
It will create a link for issue with page filters using “created date” timestamp for the issue.
And the new calculated measure will listen to page filters based on issue created date timestamp value.
Martins / eazyBI
Problem solved. You’re the best.