Reply
KevinGuan
Regular Visitor
Partially syndicated - Outbound

No checkbox for each sheet when i click combine files in query for sharepoint floder files

i connect share point folder, and selected files ,then combine files i find no any check box beside each sheets, please see 1st picture , then i tried get resoure directly to local excel files , i can find checkbox to select 2 or more sheets , please see 2nd picture ,  so how to fix problem for sharepoint folder

KevinGuan_0-1720752042725.png   

KevinGuan_1-1720752291238.png

 

 

1 ACCEPTED SOLUTION

Syndicated - Outbound

Hi @KevinGuan ,

 

Where are you stuck? 

You don't need to apply such complex transformations, just click the Transform button to enter the PowerQuery editor when you are in the Navigator:

vcgaomsft_1-1721281089832.png

You will get a raw query. All of our other tables will reference from it, you just need to right click here and uncheck Enable load:

vcgaomsft_3-1721281375193.png

vcgaomsft_4-1721281476252.png

This will result in some duplicate steps, but due to node caching optimizations, they won't actually be repeated more than once, so there's no need to worry about performance.

vcgaomsft_5-1721281575005.png

I've attached the sample file hopefully it will help.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

View solution in original post

13 REPLIES 13
KevinGuan
Regular Visitor

Syndicated - Outbound

Any one has solution ?

Syndicated - Outbound

Hi @KevinGuan ,

 

Where are you stuck? 

You don't need to apply such complex transformations, just click the Transform button to enter the PowerQuery editor when you are in the Navigator:

vcgaomsft_1-1721281089832.png

You will get a raw query. All of our other tables will reference from it, you just need to right click here and uncheck Enable load:

vcgaomsft_3-1721281375193.png

vcgaomsft_4-1721281476252.png

This will result in some duplicate steps, but due to node caching optimizations, they won't actually be repeated more than once, so there's no need to worry about performance.

vcgaomsft_5-1721281575005.png

I've attached the sample file hopefully it will help.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

Syndicated - Outbound

Hi, Thanks ,it seems works , but i have another question , what is the difference for duplicate in right menu . i tried this , it also can create another query , can you make a deatil difference between reference and duplicate 

KevinGuan_0-1721284755351.png

 

 

 

 

Syndicated - Outbound

Hi @KevinGuan ,

 

Duplicate: This function creates an identical copy of the original query with separate steps. Changes made to one will not impact the other, making this useful for different configurations or modifications.
Reference: This option links a new query to the original. The new one has a single step that sources from the original. Alterations to the first query will also appear in the referenced one, convenient for making various branches from the original.

Reference vs Duplicate in Power BI; Power Query Back to Basics - RADACAD


Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

Syndicated - Outbound

hello, thanks ,it is very useful link , i learn much from you ,thanks 

dufoq3
Super User
Super User

Syndicated - Outbound

Click at the top of that group = Parameter1 [38] and transform data. It should load this tables to Power Query and then you can filter.


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Syndicated - Outbound

hello , where is top of that group?,there is no any menu at the top before transform data , 

 

KevinGuan_0-1721003941084.png

 

Syndicated - Outbound

Hi @KevinGuan ,

 

I tested it and there is no multi-select box on the navigator. I tested it and there is no multi-select box on the navigator. If you want to filter the combine files, you can insert a filter after the Source step of the query below:

vcgaomsft_1-1721010277165.png

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

Syndicated - Outbound

Now you know my question ?

Syndicated - Outbound

Hello, thanks for suggestion , but i do not want merged files, i want multi-select 2 and more sheets in one files , you can do test again ,select one file, then click combine button in the content column . you will find no checkbox to selected , but if you directly get resource to local excel , you can find checkbox in every sheet , so it was very strange 

KevinGuan_0-1721011991336.png

 

Syndicated - Outbound

Hi @KevinGuan ,

 

There was a bit of a problem with my previous statement, what I was trying to say was also combine files. 

 

If you want to get multiple sheets in an Excel file, you may do so by creating separate queries in accordance with the following instructions. Then combine the tables.
how to import multiple files from folder and keepi... - Microsoft Fabric Community

 

you can also add this custom column after the Source step (depending on the actual needs to decide whether to use the first row as the header), and then split the query for each table.

vcgaomsft_0-1721024068400.png

 

Table.Combine(List.Transform(Excel.Workbook([Content])[Data],each Table.PromoteHeaders(_, [PromoteAllScalars=true])))

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum -- China Power BI User Group

Syndicated - Outbound

Thanks for more information, it was very good , but there are new question after steps , let us take exmaple , my excel name in sharepoint is Book20240712, and there are 2 sheets named A and B 

1, uncheck the loading of the query 1, and i selected sheet B.

2. right click reference , (then renmae query 2 ), i find that sheet is also B , but i want select A , i tried to filter column , there is No sheet A ,  how to modify ?? 

KevinGuan_0-1721025731049.png

 

 

Syndicated - Outbound

hello,i read your post link  again , i find something new . i think duplicate query before load would be better , here is my testing according the article.

1. We can uncheck the loading of the original table.The name is Query 1 (selected sheet A)

2.For each table we need, reference the original table and rename it.the name is Query 2 - Reference ,you can change to select sheet B ,(Then i also duplicate the query1 ,the name is Query 2-Duplicate, and i can select sheet B  )

3.then i test load all , i find duplicate is good , because i have selected another sheet as picture (sheet B ) , reference is same as original query , you can not select another sheet ,

KevinGuan_1-1721097273617.png

 

 

 

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)