これはPowerQuery用です。
さまざまな日付の情報をまとめたレポートに取り組んでいます。リスト内の最新の日付と、別の列に最新の日付までの前の日付を生成する列が必要です。
最新の日付は列全体で同じである必要があります(前の日付の列でも同じ)
Table Name : Skipped_Issue
Worker |Case |Report_Date |MOST_CURRENT_DATE |PREVIOUS_DATE
Tran |3000 |1/2018
Dhni |52451 |4/2018
Dhtuni |39656 |2/2018
@ Alexis-Olson便利です、リストに対する私の敬意が高まります!各アイテム(ワーカー)の日付の最大行を取得する必要がありました。次のようなコードを記述しました。
#"Grouped Rows" = Table.Group(#"Removed Columns", {"Worker"}, {{"AllDates", each _, type table}}), #"Added ReportDate List" = Table.AddColumn(#"Grouped Rows", "ReportDates", each [AllDates][Report_Date]), #"Added MaxReportDate" = Table.AddColumn(#"Added ReportDate List", "Report_Date", each List.Max([ReportDates])),
次にマージして、各ワーカーの最大日付の単一アイテムを取得します。列のリストが必要なときに、すべての行が便利なグループ化された行を見つけています