Forum Discussion
Anonymous
4 years agoNot applicable
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
AlexisOlson
4 years agoSuper 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.
Anonymous
2 years agoNot applicable
that was what I needed, thanks