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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors