Hello,
I have SharePoint list with a few date columns (Date Reported, Date Approved and Date Closed ) .
I want to group the columns by month and show the amount of items for that month.
I was able to group one successfully and show it as a line in the graph but i want to show the other data points as overlaying lines/series. So ultimately I want to add other columns into this formula just not sure how to...thank you for your help!
Here is the formula i am using on the chart and in the picture
ITEMS=AddColumns(
GroupBy(
AddColumns(
Chart_RFC_Export,
"MonthName",
Text(
'Date Reported',
"[$-en-US]mmmm"
)
),
"MonthName",
"Grouped"
),
"Count",
CountRows(Grouped)
)