Forum Discussion

mansiluthra12's avatar
4 years ago
Solved

Table.FromRows(Json.Document(Binary.Decompress(Binary) - how to find this source?

I have a existing dashboard in which there a table with following source . Basically all the data in that dasboard is loading from sharepoint . Where I can find this foler Table.FromRows(Json.Docum...
  • lbendlin's avatar
    4 years ago

    This is a manually added reference table that is packed up to save space.  You can represent it simpler by using the #table syntax if you want.

    #table({"ID","Company","Origin","Destiny"},
    {{"4","AA","Barcelona","Valencia"},
    {"5","AA","Valencia","Barcelona"},
    {"6","AA","Madrid","Roma"},
    {"7","AA","Roma","Madrid"},
    {"8","AA","Barcelona","Madrid"},
    {"9","AA","Madrid","Barcelona"},
    {"10","AB","Barcelona","Valencia"},
    {"11","AB","Valencia","Barcelona"},
    {"12","AC","Madrid","Roma"},
    {"13","AC","Roma","Madrid"},
    {"14","AC","Barcelona","Roma"},
    {"15","AC","Roma","Barcelona"}}
    )

    This is unrelated to Sharepoint.