Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Goal

APIを使用して、PowerBIで部門別のエリアと、さまざまなRDSステータスが関連付けられている部屋の数を示す、
簡単なダッシュボードを作成します。

ドキュメントとリクエストURLの取得を使用して、エクスポートするデータを特定する。

どのようなデータをエクスポートすべきかを把握するために最初にすべきことは、自分のデータベースのオープン
API ドキュメンテーション GUI にログインすることです。利用可能な属性のリストはデータベースの設定によって異なるので、ログインする必要があります。それから、スキーマ (Schemas)のセクションを見て、部屋を展開し"< * >" の下にある、 “もっと見る (more)” プロパティも展開します。

この場合、”メイン (main)” 部門のみ (部屋のグループ化) と、プログラムおよび設計されたエリアについて、
レポートしたいと思いますので、以下の属性をメモしておきます:

room_function_0_no
room_function_0_name
programmed_area
designed_area
rds_status_short 

Power BIで使用できるリクエストURLを直接コピーすることができます。この場合は:

https://api-no.drofus.com/api/rooms?$select=room_function_0_no,room_function_0_name,programmed_area,designed_area,rds_status_short

Getting the data in PowerBI Desktop

  1. Get Data → From Web

  2. Paste the URL copied from above

  3. Basic Authentication - choose basic (see Authentication for how to build username)

  4. Click "To Table"

  5. Click "Split columns"

  6. Click Apply and close

TIP - Changing data types

Sometimes PowerBI does not understand the datatype we get - so you have to tell it what it is. Right click on the query and select "Edit query". Right click on the columns in question and select "Change Type"

Example: Column chart with programmed vs designed area by department:

Example 2: Adding number of rooms by RDS status and programmed are by department



  • No labels