Jump to content

Mr


hiflyer

Recommended Posts

Hi,

I have an problem which I'm not able to solve, I was given an powerBI report which has an testing table called Asset which is taken from an API endpoint.

Power BI Query Line :

// Expand the table to multiple columns, and prepend a table alias to each field name.
TableData = Table.ExpandRecordColumn(SingleColumnTable, "Column1", {
"assetId",
"organizationId",
"dateCreated",
"dateModified",
},
{
"a.assetId",
"a.organizationId",
"a.dateCreated",
})

Base data table colums don't have an alias name prepended into the table. Is there a way we can create an view on this asset table by passing an Alias like a.assetId etc ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...