Power Query

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
I am looking at a Workbook someone else created.

When I look at the source of this table, it looks like this:

let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("fZLRasMwDEV/RfRphe4j0lDYIF2yNWMPJQ8h0YwgtoutFPr3c2iSOrWzF9tc3SOBrs/nzWevGeEVDkrAwTLJmnGzu8vuXsjVbvI74NRfLh2hga/86AEL+QF4/g8Ne2pjyFgZqCJ3SNJwX3cWXpI83TpjkbtjKT68V/EjGNtvRZxqy7P9WZ+JtDdXbMG938iyNrcJCQvrDPxqAyeSpV6lPcvcJxwam/bfmNX+R7KNY7MygUy79Eo0EhJhECWqYS2DwV1rBq/H8/5HMkxgyjjVUqJpqO6gMNSQEl7MkaLPvitGo5AjZFCaN5TVloc1+YmPWvzzTS2Dv3cXquoP", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Source Type" = _t, Type = _t, Subcatagory = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Source Type", type text}, {"Type", type text}, {"Subcatagory", type text}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Source Type", "SourceType"}}),
#"Sorted Rows" = Table.Sort(#"Renamed Columns",{{"SourceType", Order.Descending}, {"Subcatagory", Order.Ascending}})
in
#"Sorted Rows"

can someone please explain this? I am use to the table source being an excel table or a SQL Table view.... I have never seen this before and I have to add a row to it with new data.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".

Forum statistics

Threads
1,215,327
Messages
6,124,294
Members
449,149
Latest member
mwdbActuary

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