Filter Issues by Project with Story Points <= 1

I am trying to build a report that has a list of all projects with issues that have story points <= 1
I tried using the filter option but does not give the expected results

If I filter based on issues I get the results I expect but can not able to see a column by project

Hi @briantaylor

In this case, you could use advanced settings and enable the dimension import for custom field “Story points”
See similar topic discussed here:

Next, create a new user-defined calculated measure to sum results from issues without story points and issues with 1 story point.

(
  [Measures].[Story Points closed],
  [Story Points].[(none)]
)
+
(
  [Measures].[Story Points closed],
  [Story Points].[1]
)

Finally, filter the report rows by this new calculated measure (New measure > 0) and remove it from columns when the filter is set.

Martins / eazyBI support