How do I run a report in my table

hi @Carlo_Cardenas ,

although I like the creative solution of @Tamerlan_PRO quite a bit (dding a column with day values), there is a shorter route I show below.

the date picker outputs two date values and we apply a filter relating to the first and last value (or min & max which are the same in this context).

thisRow.[date of contact] >= [date range 1].First() and
thisRow.[date of contact] <= [date range 1].Last()

@Tamerlan_PRO made many great comments worthwhile to follow!

cheers, Christiaan

3 Likes