Filter Issues by Project with Story Points <= 1

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