I have the following which generates a Chart from all data in a SharePoint List. Each SharePoint List item has a Created value; so, I would like to also crate a Chart based on Start and End "Created" values. How do I incorporate into info below?
Hi @RJF61 ,
Please try:
ForAll(
GroupBy(
AddColumns(SLAMChartSummary,NewCreatedColumn,Text(Created,"yyyy-mm-dd")),
NewCreatedColumn,
ByGroup
),
{
OMGrp: OMGrp,
SumofNoSlams: Sum(
ByGroup,
Value(NoSlams)
)
}
)
Best Regards,
Bof