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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
eliasayy
Impactful Individual
Impactful Individual

How to create json table for easier sharing pbix file

Hello everyone, i was wondering whenever someone answers my question with pbix file, the source of the table is always a json file, and i could view the powerquery with no issue because it isnt dependnat on an excel file .so i was wondering how can i do that? So i can share my pbix with json source

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

If you use the Enter Data tool

AlexisOlson_0-1673741285739.png

then it will automatically create a self-contained table in the compressed JSON format. Here's what the above produces:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkktLlGKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}})
in
    #"Changed Type"

 

You can edit this table using the gear icon:

AlexisOlson_2-1673741498439.png

 

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

If you use the Enter Data tool

AlexisOlson_0-1673741285739.png

then it will automatically create a self-contained table in the compressed JSON format. Here's what the above produces:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkktLlGKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}})
in
    #"Changed Type"

 

You can edit this table using the gear icon:

AlexisOlson_2-1673741498439.png

 

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.