I have a table with {date_approved} column, now I want to summarize the count for this per week.
For example:
{date_approved} | {count}
06/01/2020 | 5
06/02/2020 | 5
06/03/2020 | 5
06/04/2020 | 5
06/05/2020 | 5
06/06/2020 | 5
06/07/2020 | 5
06/08/2020 | 5
06/09/2020 | 5
Let’s say 06/01/2020 and 06/08/2020 is Monday. 06/07/2020 is Sunday.
Total count: 35 (Monday to Sunday)
At present, this block is only summarizing the count per week, Monday to Sunday.
But I it to count/group from Friday to Thursday by default.
Is this possible? If not, what should I do to get the same effect? I just want to get a summary of {count} each custom week range {date_approved}.

Thanks!
