Hi,
I am trying to create a chart with sum of the values with the same date, with the help of "eka24" I was able to get the code for it, but now the problem is I am not getting the sum of the values.
The code I am using is,
ClearCollect(
MyRequest,
Filter(
AddColumns(
GroupBy(
'All Requests',
"Deadline",
"AllSlides"
),
"TotalSlides",
Sum(
AllSlides,
'Slide Count'
)
),
Deadline >= Today()
)
);
But the output I am getting is

for Date 06/07 it should sum the values and show one bar with the value 36 and same with others also. And only show bars of 3 days that is today, tomorrow and day after that. Also, the collection is very much required as it is used for validation also.
The table is as follows,

Thanks