Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Unir dos .pbix

Hola.

 

He realizado dos analisis en archivos .pbix diferentes.

Y ahora me gustaria unificar esos dos archivos en uno solo. ¿Es posible hacer eso sin tener que volver a realizarlos de nuevo?

 

Un saludo.

2 ACCEPTED SOLUTIONS
BA_Pete
Super User
Super User

Hi @Anonymous ,

 

There's not a way to merge them per se, but you can move the main assets from one file to another fairly quickly:

 

In power query, you can multi-select queries (hold down CTRL or SHIFT while selecting) and copy them from one file and paste into the query section of another file. You will need to re-establish relationships.

 

Measures are a bit trickier. For the most part, you will need to copy and paste them from one file to another. You can make this much quicker by creating a blank query in the file you want to move measures FROM and pasting this code over the default code:

= OleDb.Query("Provider=MSOLAP.8;Data Source=localhost:53931;Update Isolation Level=2",
"select 
   MEASUREGROUP_NAME, 
   MEASURE_NAME, 
   EXPRESSION
from $SYSTEM.MDSCHEMA_MEASURES
where MEASURE_AGGREGATOR = 0")

 

You will need to use a tool like DAX Studio to get your localhost number (replace the number 53931 in the first line above), but this will give you a full table and measure listing that you can export to Excel making the copy/paste process significantly faster than trying to do it between two PBIX files directly.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

v-shex-msft
Community Support
Community Support

HI @Anonymous,

Current power bi does not support combine pbix files.
For this requirement, you can copy one report query tables to another file, then you can use the copy/paste contents feature to manually move these content between two pbix files.

Power BI Desktop November 2018 Feature Summary | Microsoft Power BI Blog | Microsoft Power BI

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

HI @Anonymous,

Current power bi does not support combine pbix files.
For this requirement, you can copy one report query tables to another file, then you can use the copy/paste contents feature to manually move these content between two pbix files.

Power BI Desktop November 2018 Feature Summary | Microsoft Power BI Blog | Microsoft Power BI

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
BA_Pete
Super User
Super User

Hi @Anonymous ,

 

There's not a way to merge them per se, but you can move the main assets from one file to another fairly quickly:

 

In power query, you can multi-select queries (hold down CTRL or SHIFT while selecting) and copy them from one file and paste into the query section of another file. You will need to re-establish relationships.

 

Measures are a bit trickier. For the most part, you will need to copy and paste them from one file to another. You can make this much quicker by creating a blank query in the file you want to move measures FROM and pasting this code over the default code:

= OleDb.Query("Provider=MSOLAP.8;Data Source=localhost:53931;Update Isolation Level=2",
"select 
   MEASUREGROUP_NAME, 
   MEASURE_NAME, 
   EXPRESSION
from $SYSTEM.MDSCHEMA_MEASURES
where MEASURE_AGGREGATOR = 0")

 

You will need to use a tool like DAX Studio to get your localhost number (replace the number 53931 in the first line above), but this will give you a full table and measure listing that you can export to Excel making the copy/paste process significantly faster than trying to do it between two PBIX files directly.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.