Power Queryでカレンダー
1049 ワード
単なる作成例。詳細エディタに貼って使えます。
ただの日付と曜日のリスト
終了日を定め、そこから遡る方式にしてみました。
カレンダー生成
(カレンダー終了日 as date,遡る年数 as number) as table=>
let
Source = List.Generate(
()=>[日付=Date.AddYears(カレンダー終了日,-遡る年数),曜日=Date.DayOfWeekName(日付)],
each [日付]<=カレンダー終了日,
each [日付=Date.AddDays([日付],1),曜日=Date.DayOfWeekName(日付)]
),
Custom = Table.FromRecords(Source)
in
Custom
Author And Source
この問題について(Power Queryでカレンダー), 我々は、より多くの情報をここで見つけました https://qiita.com/tanuki_phoenix/items/7c2e3a60fbfcc43022c6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .