8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

100万人に届けたい!私のお気に入りガジェット

Power Automate Desktopで毎週の定例指示を自動化

Last updated at Posted at 2023-08-02

私は北海道で小売業の最前線で働いております。
主な業務内容は従業員と商品にスポットをあて組織を成果に導くことです。

食品小売業、中でも生鮮食品(野菜果実・水産物・畜産物)は極めて特殊です。
生鮮食品の特売品は仮に在庫が残って仕入れ売価よりも高い売価で販売する場合は
「値上げ処理」という作業が必要になります。
整合性を保つためにも会社からは最低週一回の計上を求められています。

忙しい現場では週一回の計上が忘れがちになってしまうため
口頭で伝達をしていますが
Power Automate Deskutopを使用してメールを自動送信することで
計上の抜け漏れの回避と一括での情報共有を実践します

目次

1.完成したものを動画にしてみました
2.使用したツール
3.Power Automate Desktopのフロー
4.同僚からのレビュー
5.あとがき

完成したものを動画にしてみました

Power Automate Desktopのフローの稼働状況とメールの送受信を動画にしてまとめています。

使用したツール

Power Automate Desktop
Microsoft Excel
Outlook

Power Automate Desktopのフロー

スクリーンショット 2023-07-30 184532.png
スクリーンショット 2023-07-30 184545.png

「フローのソースコード(Robin)」はこちら

Display.ShowMessageDialog.ShowMessage Title: $'''今週の黒売変''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed
SWITCH $'''ButtonPressed'''
CASE = $'''Yes'''
DateTime.GetCurrentDateTime.Current DateTimeFormat: DateTime.DateTimeFormat.DateAndTime Offset: $'''Asia/Tokyo''' CurrentDateTime=> CurrentDateTime
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\Users\takef\OneDrive\デスクトップ\黒売変定型文.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: ExcelInstance Name: $'''本文(計上依頼)'''
Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: $''' CurrentDateTime''' Column: $'''C''' Row: 4
Outlook.Launch Instance=> OutlookInstance
Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: ExcelInstance Name: $'''本文(計上依頼)'''
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 10 ReadAsText: False CellValue=> ExcelData5
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 11 ReadAsText: False CellValue=> ExcelData6
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 12 ReadAsText: False CellValue=> ExcelData7
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 13 ReadAsText: False CellValue=> ExcelData8
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 14 ReadAsText: False CellValue=> ExcelData9
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 15 ReadAsText: False CellValue=> ExcelData10
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 16 ReadAsText: False CellValue=> ExcelData11
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 17 ReadAsText: False CellValue=> ExcelData12
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 18 ReadAsText: False CellValue=> ExcelData13
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 19 ReadAsText: False CellValue=> ExcelData14
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 20 ReadAsText: False CellValue=> ExcelData15
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 21 ReadAsText: False CellValue=> ExcelData16
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 22 ReadAsText: False CellValue=> ExcelData17
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 23 ReadAsText: False CellValue=> ExcelData18
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 24 ReadAsText: False CellValue=> ExcelData19
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 25 ReadAsText: False CellValue=> ExcelData20
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 26 ReadAsText: False CellValue=> ExcelData21
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 27 ReadAsText: False CellValue=> ExcelData22
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 28 ReadAsText: False CellValue=> ExcelData23
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 29 ReadAsText: False CellValue=> ExcelData24
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: $'''C''' StartRow: 30 ReadAsText: False CellValue=> ExcelData25
Outlook.SendEmailThroughOutlook.SendEmail Instance: OutlookInstance Account: $'''takefuji3598@outlook.jp''' SendTo: $'''takefuji3598@gmail.com''' Subject: $'''今週の黒売変''' IsBodyHtml: False
CASE = $'''No'''
Display.ShowMessageDialog.ShowMessage Title: $'''確認''' Message: $'''終了''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed2
END

つまづき
スクリーンショット 2023-07-29 212538.png
画像のようにExcelを閉じるアクションで保存が出来ないエラーが発生、しばし悩んだが
どうやっても解決できないのでスルーすることにします。
お尻につけた3工程を全カットします、焦点はExcelが保存できるかではなく
メールが送れるかなので気にせずいきましょう。

Excelの中身
スクリーンショット 2023-07-30 193955.png

無事にメールが届きました
スクリーンショット 2023-07-30 184729.png

同僚からのレビュー

今回のメールの自動送信を同僚で住居余暇課長のF原さんに使用してもらいレビューを求めます。

私:「毎週ミーティングとかで伝えている計上の依頼だけどメールで
自動送信する仕組みを作ってみたんですけど、ちょっと使ってみて
もらって良いですか?
Excelの内容を書き換えて起動するだけでメールが流れます
これだと伝達忘れも無くなるし私も一発でコミュニケーションが
済むので時短にもなります、受け取る側も記録として残るから
抜け漏れも無くなりませんかね~??」

忌憚なき意見をくださいっ!

【良かった点】
*課長の業務は軽減される
【改良した方が良い点】
*そのメールから実際に計上作業へと遷移できるようにした方が良い(URLなど)
*計上作業の根拠となるメール送信時点でのグループ毎の数値状況も併せて確認出来ると良い
*課長にとっては便利だが従業員にとっては機能に乏しい
【悪かった点】
*メールが来てもやらない人はやらないので抜け漏れなどは変わらないと思う

F原さん愛あるレビューありがとうございます、使う側の観点で指摘していただき気づきが
ありました!自分の業務効率は若干改善出来るかもしれませんが現場の業務は何も変わらない
という指摘は目から鱗でした・・・カチコチに凝り固まった自分の脳よ・・・ガンバレ

参考文献

あとがき

Power Automate Desktopは出来ることが多く記事を読んでいて発想に広がりが
出ました、送信予約なども出来るので懸案のポスター貼替業務に活かしてみようか・・・

何より今回はF原さんのレビューで目が醒めました、独りよがりではなく
皆が使ってカイゼンを実感出来るツールが必要ですね。

8
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?