PowerAutomateで前月の年月(yyyy/M)を取得したい。そうなるように作ってみたところ、正常に取得できた。
やりたいこと
PowerAutomateで前月の年月(yyyy/M)を取得したい。
例えば、今が2023年8月だとすると、その前の月である2023年7月というのを、yyyy/MM 形式(2023/7)で取得したい。
環境
- RPA: Microsoft Power Automate 2.34.0300.23206 ※デスクトップ版
やったこと
PowerAutomateで作ってみた。
Robinコードの例
上記をコピーしてテキストエディターに張り付けたもの。
DateTime.GetCurrentDateTime.Local DateTimeFormat: DateTime.DateTimeFormat.DateOnly CurrentDateTime=> CurrentDateTime DateTime.Add DateTime: CurrentDateTime TimeToAdd: -1 * (CurrentDateTime.Day - 1) TimeUnit: DateTime.TimeUnit.Days ResultedDate=> ResultedDate DateTime.Add DateTime: ResultedDate TimeToAdd: -1 TimeUnit: DateTime.TimeUnit.Days ResultedDate=> ResultedDate2 Text.ConvertDateTimeToText.FromCustomDateTime DateTime: ResultedDate2 CustomFormat: $'''yyyy/M''' Result=> FormattedDateTime2