LoginSignup
0
1

More than 1 year has passed since last update.

Power BI Free版はやっぱり 共有できなかった・・

Last updated at Posted at 2021-06-23

概要

Premium/Pro 版を使えない、そんな悲しい環境にある人でも、ちょっと頑張れば何もない状態よりは共有化がましになりますよ、というメモ思ったら、試行期間中だったという愚かなお話でした・・

  • Power BI のレポートをメールで定期受信 Premium/Pro じゃないとダメでした。一時的な試行期間中だった為、自身への転送が出来ていただけでした。すみませんでした。😢
  • Power Automateで、メールを転送

Power BI のレポートをメールで定期受信

  1. マイワークスペースに発行 image.png
  2. データセットの定期更新 image.png
  3. メールの定期受信 Premium/Proじゃないとダメでした。ごめんなさい
    自分用のサブスクリプションを 作成する には、Power BI Pro または Premium Per User の ライセンスが必要です。 image.png
    • 自分以外をサブスクしようとすると・・premium 版にしろよーってメッセージ😂
      image.png

Power Automateで、メールを転送

Premium版無くて頑張る人用

  1. Mail 受信 Trigger
  2. 添付の画像ファイルを取得
  3. OneDriveにUpload base64(contentBytes)にするとサイズが大きすぎるので・・
  4. Thumbnail取得
  5. TeamsへPost
    image.png
postSample.json
{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "TextBlock",
            "wrap": true,
            "text": "Subscription for testForBI"
        },
        {
            "type": "Image",
            "url": "@{outputs('Get_file_thumbnail')?['body/Url']}"
        }
    ],
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "msteams": {
        "width": "full"
    },
    "version": "1.2"
}

実際の受信例

ってことで、無事、共有できるようになりました。
といっても、画像だけなので、BIとしては微妙です。
これを元に、Premium/Pro の購入を認めてもらう活動を地道にしていきますかね・・
image.png

0
1
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
0
1