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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Convert record to text in power BI

Hi Team,

 

Source table:

RnoDetails
1

{​​​​
{​​​​
  "Internal": {​​​​
    "@xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
    "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
    "SubscriptionId": "b",
    "ResourceGroupName": "c",
    "ServerName": "d",
    "ApplicationName": "PostgreSQL",
    "PowerOperationType": "S",
    "ServerEntityId": "5",
    "VirtualMachineEntityId": "5"
  }​​​​
}​​​​

2{​​​​
  "Internal": {​​​​
    "@xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
    "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
    "SubscriptionId": "b",
    "ResourceGroupName": "cf",
    "ServerName": "d",
    "ApplicationName": "PostgreSQL",
    "PowerOperationType": "S",
    "ServerEntityId": "5",
    "VirtualMachineEntityId": "5"
  }​​​​
}​​​​

 

When i load these table in to power bi , the values are showing like below , It is showing as record in details ciolumn Instead of showing original values

 

RnoDetails
1Record
2Record
3Record

 

 

I want to show the same value and pattern given by in source table instead of showing record. Can you please help me out on this ?

 

Thanks,

v

1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

Hello @Anonymous 

 

this data is a json, and probably you get this from the data source. So to convert back a Reccord to a Json.File, you have to use Json.FromValue and Text.FromBinary. Here a practical example

let
    JsonRecord =Json.Document("{
  ""Internal"": {
    ""@xmlns:xsd"": ""http://www.w3.org/2001/XMLSchema"",
    ""@xmlns:xsi"": ""http://www.w3.org/2001/XMLSchema-instance"",
    ""SubscriptionId"": ""b"",
    ""ResourceGroupName"": ""cf"",
    ""ServerName"": ""d"",
    ""ApplicationName"": ""PostgreSQL"",
    ""PowerOperationType"": ""S"",
    ""ServerEntityId"": ""5"",
    ""VirtualMachineEntityId"": ""5""
  }
}
"),
JsonOutput = Json.FromValue(JsonRecord),
Text = Text.FromBinary(JsonOutput)
in
    Text

 

you could transform this query into a function that takes Json-Record and apply to a new column and using the record-column as input.

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works.


If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

View solution in original post

3 REPLIES 3
Jimmy801
Community Champion
Community Champion

Hello @Anonymous 

 

this data is a json, and probably you get this from the data source. So to convert back a Reccord to a Json.File, you have to use Json.FromValue and Text.FromBinary. Here a practical example

let
    JsonRecord =Json.Document("{
  ""Internal"": {
    ""@xmlns:xsd"": ""http://www.w3.org/2001/XMLSchema"",
    ""@xmlns:xsi"": ""http://www.w3.org/2001/XMLSchema-instance"",
    ""SubscriptionId"": ""b"",
    ""ResourceGroupName"": ""cf"",
    ""ServerName"": ""d"",
    ""ApplicationName"": ""PostgreSQL"",
    ""PowerOperationType"": ""S"",
    ""ServerEntityId"": ""5"",
    ""VirtualMachineEntityId"": ""5""
  }
}
"),
JsonOutput = Json.FromValue(JsonRecord),
Text = Text.FromBinary(JsonOutput)
in
    Text

 

you could transform this query into a function that takes Json-Record and apply to a new column and using the record-column as input.

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works.


If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

Thanks for the solution!

I simplified it by just adding a custom column with the following code:

Text.FromBinary(Json.FromValue([JSON]))

Where "JSON" is the name of the column containing the json Records.

Thanks a lot for the solution. This worked like a charm. However, if you only need one specific value from the JSON, all you need to do is to add the specific subvalue.

 

For instance, let's assume you have a record column named "ColumnName". It contains a subvalue called "Title". Hence, you need to add "Title" right after "ColumnName"

Text.FromBinary(Json.FromValue([ColumnName][Title]))

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.