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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
jesly_ajin
Helper III
Helper III

To get a function output as text value instead of Table output in Power Query

Dears,

Below is my function in Power Query Editor. The output is currently as a table with a single row single column.

I need the function output to be a text in order to use its value.  Please help

 

()=> let
url = "https://abc.track.com/api/v1/auth/login",
headers = [#"Content-Type" = "application/json"],
postData = Json.FromValue([username="MyAbc",
password= "554433", fcmToken="456"]),
response = Web.Contents(
url,
[
Headers = headers,
Content = postData
]
),
access_token=Json.Document(response),
result = access_token[result],
#"Converted to Table" = Record.ToTable(result),
#"Transposed Table" = Table.Transpose(#"Converted to Table"),
#"Removed Columns" = Table.RemoveColumns(#"Transposed Table",{"Column1", "Column2", "Column3", "Column4", "Column5", "Column7", "Column8", "Column9", "Column10", "Column11"}),
#"Removed Top Rows" = Table.Skip(#"Removed Columns",1)
in
#"Removed Top Rows"

1 REPLY 1
lbendlin
Super User
Super User

()=> let
url = "https://abc.track.com/api/v1/auth/login",
headers = [#"Content-Type" = "application/json"],
postData = Json.FromValue([username="MyAbc",
password= "554433", fcmToken="456"]),
response = Web.Contents(
url,
[
Headers = headers,
Content = postData
]
),
access_token=Json.Document(response),
result = access_token[result],
#"Converted to Table" = Record.ToTable(result),
#"Transposed Table" = Table.Transpose(#"Converted to Table")
in
#"Transposed Table"[Column6]{0}

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.