PowerAppsで日付型列の月ごとに集計するには

以下のようなテーブルでCountと月ごとに集計する方法

Button コントロールを追加し、その OnSelect プロパティをこの式に設定します。

ClearCollect(col_date,ForAll(date_test,{p_date:ThisRecord.p_date,p_count:ThisRecord.count}));

ClearCollect(grp_month_list,
    AddColumns(
        GroupBy(
            AddColumns(
                col_date,
                "YearMonth",
                Text(
                    p_date,
                    "yyyy/mm"
                ),
                "Year",
                Year(p_date)
            ),
            "YearMonth",
            "MonthByYear"
        ),
        "Total",
        Sum(
            MonthByYear,
            Value(p_count)
        )
    )
)

上記を実行した結果