Reputation: 254
Power BI - How multiple developers can work on a same report? If scenario comes in which you need 3 developers to work on data-model side and creating DAX Measures and you also need 3 developers to make visualizations, then how they can co-ordinate their work?
Upvotes: 1
Views: 3470
Reputation: 1231
Upvotes: 0
Reputation: 4967
How multiple developers can work on a same report?
Short answers is you can't, Power BI is not set up to be used in this manner.
You will have to separate out the report design into the backend (data model) and the frontend (the report), so you deploy the data model, then connect to that data model to build the frontend, but you will not be able to work on the same report at once, either in the desktop or the service.
You can have people working on the backend, using Sql Server Development Tools (SSDT) to create the data model, then use the Power BI XMLA endpoint to deploy to it. But you'll have to check in/out the data model, and merge in devops/github. Which isn't great and you'll run into issues if your XMLA isn't correct, or you overwrite peoples changes.
Upvotes: 3