Forum Discussion
Trying to expand binary content
Hi,
Is there any other way to expand this content, because if i click on expand icon besides Content, then it is not working
10 Replies
- kymramosrpoAdvocate V
Hello! By now I'm assuming you have found a solution to this, but just in case anyone would find this post asking the same or a similar question, here's my suggestion:
1. Keep the 'Content' column with 'Binary' values.
2. Add a custom column and paste, Table.FromList(Lines.FromBinary([Content])).
3. Keep that custom column (i.e., with 'Table' values).4. Expand that column by clicking on the ↰↱ button in the top right corner of the column.
Result:
---
How about you? What's your suggestion?
- serpiva64Solution Sage
Hi,
right click on the column
select transform - text
and it opens
If this post isuseful to help you to solve your issue consider giving the post a thumbs up and accepting it as a solution !
- AnonymousNot applicable
When i tried above solution then getting below error
- AlexisOlsonSuper User
The code for this step looks like this:
= Table.TransformColumns(#"Filtered Rows", {{"Content", Text.FromBinary}})You can replace Text.FromBinary with the appropriate function like Excel.Workbook.
= Table.TransformColumns(#"Filtered Rows",{{"Content", Excel.Workbook}})Then it should return tables instead of garbled text.
- Ali5457Frequent Visitor
Hi, once you have all the binary contents, rather than combining them all, I 'd like to crate separate tables for each binary row because in my SharePoint folder I have different tables with totally different contents, rows and columns. How to do that please?
- AnonymousNot applicable
Hi Anonymous ,
Maybe you need to try combining.
Combine files (binaries) in Power BI Desktop - Power BI | Microsoft Docs
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.