I’m just starting my journey with eazyBI, and one of my clients needs to filter the Sprint start date as a page filter in the report in order to deliver a high-level presentation, my report currently looks like this:
The print screen has an “Inicio Sprint” >Jan 2025 filter set; please remove that.
Each measure binds differently with the Time dimension. Please use the Time dimension in the Pages to filter the start date of the Sprint and create a new calculated measure that will bind all the report data together with the Page filter.
Please use the DateInPeriod() (read more here: DateInPeriod)
to check whether Sprint’s start date is in the selected period.
The formula should look something like this:
CASE WHEN
DateInPeriod(
[Sprint].CurrentHierarchyMember.Get('Start date'),
[Time].CurrentHierarchyMember
)
THEN 1
END