
That is the second a part of the sequence of weblog posts displaying the right way to combine Energy BI with Azure DevOps, a cloud platform for software program growth. The earlier publish gave a quick historical past of supply management methods, which assist builders handle code adjustments. It additionally defined what Git is, a quick and versatile distributed supply management system, and why it’s helpful. It launched the preliminary configurations required in Azure DevOps and defined the right way to combine Energy BI (Material) Service with Azure DevOps.
This weblog publish explains the right way to synchronise an Azure DevOps repository along with your native machine to combine your Energy BI Initiatives with Azure DevOps. Earlier than we begin, we have to know what a Energy BI Undertaking is and the way we will create it.
Energy BI Undertaking (*.PBIP) is a brand new file format for Energy BI Desktop that was introduced in Could 2023 and made out there for public preview in June 2023. It permits us to avoid wasting our work as a challenge, which consists of a folder construction containing particular person textual content recordsdata that outline the report and dataset artefacts. This permits us to make use of supply management methods, corresponding to Git, to trace adjustments, evaluate revisions, resolve conflicts, and evaluation adjustments. It additionally permits us to make use of textual content editors, corresponding to Visible Studio Code, to edit the artefact definitions extra productively and programmatically. Moreover, it helps CI/CD (steady integration and steady supply), the place we submit adjustments to a sequence of high quality gates earlier than making use of them to the manufacturing system.
PBIP recordsdata differ from the common Energy BI Desktop recordsdata (PBIX), which retailer the report and dataset artefacts as a single binary file. This made integrating with supply management methods, textual content editors, and CI/CD methods tough. PBIP goals to beat these limitations and supply a extra developer-friendly expertise for Energy BI Desktop customers.
Since this function continues to be in public preview when penning this weblog publish, now we have to allow it from the Energy BI Desktop Choices and Settings.
Allow Energy BI Undertaking (Developer Mode) (Presently in Preview)
As talked about, we first must allow the Energy BI Undertaking (Developer Mode) function, launched for public preview within the June 2023 launch of Energy BI Desktop. Energy BI Undertaking recordsdata permit us to avoid wasting our Energy BI recordsdata as *.PBIP recordsdata deconstruct the legacy Energy BI report recordsdata (*.PBIX) into well-organised folders and recordsdata.
With this function, we will:
- Edit particular person elements of our Energy BI file, corresponding to information sources, queries, information mannequin, visuals, and so on.
- Use any textual content editor or IDE to edit our Energy BI file
- Evaluate and merge adjustments
- Collaborate with different builders on the identical Energy BI file
To allow Energy BI Undertaking (Developer Mode), observe these steps in Energy BI Desktop:
- Go to File
- Click on Choices and settings
- Click on Choices

- Within the Choices dialog field, go to Preview options
- Examine the field subsequent to Energy BI Undertaking recordsdata
- Click on OK

After making use of the adjustments, we have to restart the Energy BI Desktop.
The first publish of this sequence defined the right way to create a brand new Organisation, Undertaking, and Repo in Azure DevOps. So, we don’t repeat these steps right here. As a substitute, this part explains the right way to clone our Git repository created on Azure DevOps on the native machine. Cloning is the method of copying a distant repository to an area machine in order that we will work on the challenge offline.
To clone a Git repo on an area machine, we require both to put in Visible Studio or Visible Studio Code (VS Code) on the native machine. We are able to additionally use Git Command Line for cloning. The latter is out of the scope of this weblog, so we concentrate on utilizing the VS Code strategies.
Word
Whatever the desired cloning methodology, now we have to put in Git on the native machine.
Observe these steps to shut Azure DevOps Repos with VS Code:
- In your net browser, navigate to your Azure DevOps Group utilizing this sample: https://dev.azure.com/{your_organization_name}
- Click on the specified Undertaking

- Click on Repos
- Click on the Clone button
- From the Clone Repository pane, click on the Clone in VS Code button
- Click on the Open button

- Now you get a message on VS Code to Permit an extension to open this URL; click on the Open button

- Choose a Folder to clone recordsdata
- Click on the Choose as Repository Vacation spot button

- Cross your credentials on the Git Credential Supervisor and click on the Register button

We’re accomplished now. You may click on both the Open button to navigate to the chosen cloned repo throughout the VS Code or click on the Open in New Window button to open a brand new occasion of VS Code and navigate to the cloned repo.

To date, now we have cloned an Azure DevOps repo with VS Code. The subsequent step is to create a Energy BI Undertaking.
Create a Energy BI Undertaking
The subsequent step is to create a Energy BI Undertaking utilizing Energy BI Desktop. You may both create a brand new challenge from scratch or convert an present PBIX file right into a Energy BI Undertaking file (PBIP). On this weblog publish, I create a brand new file from scratch.
To create a Energy BI Undertaking file, observe these steps:
- Open a brand new occasion of Energy BI Desktop, then click on the File menu
- Click on the Save as possibility
- Click on the Browse this gadget
Word
You might need to save the challenge in your OneDrive. In that case choose the OneDrive possibility on the Save as menu.
- Within the Save As dialog field, select the placement of the cloned Azure DevOps repo
- Kind in a reputation on your file
- Within the Save as sort drop-down record, choose the Energy BI Undertaking recordsdata (*.pbip) possibility
- Click on Save

After we navigate to the placement the place we saved the challenge, we’ll see that the folder incorporates the next:
- The PBIP From Scratch.pbip file
- A PBIP From Scratch.Dataset folder
- A PBIP From Scratch.Report folder
You may discover and edit these folders and recordsdata utilizing Energy BI Desktop or every other instrument of your selection corresponding to Tabular Editor or perhaps a notepad editor corresponding to Notepad++.
Now that we created the Energy BI challenge, let’s keep it up and create a easy information mannequin and report.
Since that is only a easy check, we will connect with any information supply of selection, I exploit Microsoft’s SQL Server pattern database: AdventureWorks2022DW.
In my pattern, I get information from the next tables:
- DimDate
- DimProduct
- FactInternetSales
I additionally created a brand new measure as under:
Gross sales = SUM(FactInternetSales[SalesAmount])
Then I created a easy report with a slicer and a line chart as follows, and I saved the adjustments regionally on my machine:

Now on VS Code:
- The Supply Management pane detected a few adjustments
- To commit the adjustments we enter a remark that explains what now we have accomplished
- Click on the Commit button to commit the adjustments to Azure DevOps Repo

Relying in your VS Code settings, you might get the next message on VS Code saying “There aren’t any staged adjustments to commit. Would you wish to stage all of your adjustments and commit them immediately?” as proven within the following picture. This query asks you if you want to Stage all adjustments first, after which Commit them regionally. Be taught extra about Staging adjustments and Committing right here.
I choose At all times as I don’t need VS Code to ask the identical query once more sooner or later.

To date, we dedicated adjustments to our native machine, we now need to publish the adjustments to Azure DevOps.
- Kind in a remark
- Click on the Publish Department button

Now, we efficiently Pushed all adjustments to the Azure DevOps repo. The subsequent step is to verify the DevOps repo. Checking if the adjustments have gone by on Azure DevOps is straightforward. We simply must navigate to the specified Undertaking on Azure DevOps.

Log into Material and navigate to the specified Workspace. Should you accurately configured Git Integration from the Workspace Settings, it is best to see that the Workspace contents synchronised with the Azure DevOps repo.

As you see, in my case, the synchronisation was profitable. Now, let’s open the report and see whether it is truly working.

As you possibly can see, the report is empty. It is because the Git integration in Material solely synchronises the dataset and report definitions, not the information. Due to this fact, now we have to both refresh the dataset or Publish the report back to Material from Energy BI Desktop.
Word
Since we work on a Energy BI Undertaking, when you use older variations of Energy BI Desktop than the Aug 2023 launch, the Publish button is disabled.
That is it for this weblog publish.
Within the subsequent weblog, we have a look at some real-world working situations and focus on present limitations and issues.
So keep tuned for that.
As at all times, I’d like to know your opinion and ideas. So please share with us what you suppose within the feedback part under.
Associated
Uncover extra from BI Perception
Subscribe to get the newest posts despatched to your e mail.