<@U6Z208M32> you could use a Formula (Date) filter...
# suiteanalytics
m
@samyt you could use a Formula (Date) filter and then pick the date range in the UI, or you could use another formula type such as numeric and then do something like
CASE WHEN {datefield} >= [Start Date] && {datefield} <= [End Date] THEN 1 ELSE 0 END
, or the BETWEEN keyword
👍 1