Power BI with Power Query

From Charitylog Manual
Revision as of 12:54, 5 August 2020 by Rduheaume (talk | contribs)
Jump to: navigation, search

This section requires Power BI skills and a knowledge of how the API works. It my be useful to use an API Development tool to check the dictionaries and make test calls, Postman is a suitable tool for this. Power Query is used to call the API to retrieve the data.

What you will need

In order to follow this section you will need the following;

  • Dizions API Licence (Read Only or Full)
  • Microsoft Power BI Professional licence
  • Power BI Desktop installed
  • API Development tool (Optional)

Setting up our first API query directly in Power BI Desktop

Here we are going to look at how to get started using the API and Power Query in Power BI. Before you start you will need to create an Authentication File, with this file we can then use a standard header for all of our queries that we wish to use.

Open Microsoft Power BI Desktop and select get data.

PowerBI-getdata.png

Power BI Desktop will then open and display the Get Data Menu. By default the All source menu will be selected. Scroll to the bottom of this list and select blank query and click Connect.

PowerBI-blankquery.png


This will open the Power Query Editor and create Query 1. We are going to use the advanced editor to paste the following:

  • Details of the authentication, stored in our Authentication File.
  • A call to the API dictionary to see which records we have on the system.

To access the Advanced editor click on the View Tab and select 'Advanced Editor'. This will open a new window. For the purpose of this example you can copy the text below but you will need to change the file path on the second line (keyFile) to the location of your Authentication File. In the advanced editor delete the details currently displayed and paste the text from the file below, making sure you have updated the keyFile line.

Referral Query Text

You will be prompted that Information is required for the data privacy. Click on continue. Click the check box to ignore privacy and select save.

The query will then run and display a preview table of referrals dated in 2020 with the following fields;

  • id - Case/Referral ID
  • date - The recorded date of the case/referral
  • client - This is the client (record) ID
  • referrer - This is the named referrer recorded.
  • contact_method - This is the contact method recorded when the case/referral was created.
  • client_age_range - This is the persons age range at the time of referral to the project.
  • project_name - This is the name of the project that the case/referral is recorded against.

THIS PAGE IS CURRENLY BEING CREATED 05/08/2020