Power query Binary Combine

dicken

Active Member
Joined
Feb 12, 2022
Messages
287
Office Version
  1. 365
Platform
  1. Windows
Can anyone help with this function, I've used it as ;

Excel Formula:
Binary.Combine( 
 Folder.Files( 
"C:\Users\Richard\OneDrive\Desktop\New folder\New folder") 
                       [Content] )

I've seen a video where this resulted in the actual 'contents ' being combined as tables as would happen with Table.Combine,
I cannot find anything other that ms docs on using this function and they are not much help as they indicate what i have is correct.

Any suggestions ?
Richard.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Are you familiar in PQ with the =#Shared functionality

Once you execute this, then convert to Table and you can look up every PQ functionality.
 
Upvote 0
Are you familiar in PQ with the =#Shared functionality

Once you execute this, then convert to Table and you can look up every PQ functionality.
Yes, but not sure how it helps as it help as there is no Binary to table ;
The video I was watching , I don't seem to be able to share the link ended with combined tables
as with Table.combine, I just get a single binary as binary.

RD
 
Upvote 0
What are the binary files?

If excel then you can do something like

List.Transform(
Folder.Files(
"C:\Users\Richard\OneDrive\Desktop\New folder\New folder")
[Content] ), each Excel.Workbook(_))
Then combine the tables.
 
Upvote 0
Yes but that is not what I watched being done, in the vid it took the list of Binaries, and then used Binary.Combine,
just as Table.Combine would work on a list of table, so ; BInary.Combine ( Sorce [Content] ) ,
this results not in a single binary but as combined table, unless I'm missing something.
I don't seem to be able to share the link but if you wan to have a look youtubue.

Essential Excel
EASY Trick to COMBINE Multiple Excel files into ONE with Power Query

Richard.
 
Upvote 0
If you watch it carefully, you will see that additional steps are added automatically as soon as he does the Binary.Combine(Source[Content]) step, the first of which is a Csv.Document step (since he's working with CSV files, not workbooks)
 
Upvote 0
Solution
If you watch it carefully, you will see that additional steps are added automatically as soon as he does the Binary.Combine(Source[Content]) step, the first of which is a Csv.Document step (since he's working with CSV files, not workbooks)
Thankyou, I thought I must be missing somethin like that.

Richard.
 
Upvote 0

Forum statistics

Threads
1,216,131
Messages
6,129,066
Members
449,485
Latest member
greggy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top