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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
trevordunham
Resolver I
Resolver I

Decoding a hyperlink column from a Rally API Connection

I have a Rally API connection that is returning a few fields that are hyperlinks as the actual link itself. I want to get at the text from the hyperlink not the URL associated with it. 

 

Is there any way to decode this URL to get at these hyperlink's text or is there a way to get at the data from the URL?

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,@trevordunham 

Regarding the issue you raised, my solution is as follows:

1.Here are some sample m languages that I hope will help you:

let
    Source = "",
    Sheet1=Source{[Item="Sheet1",kind="Sheet"]}[Date],
    Addcontentcolumn=Table.AddColumn(Sheet1,"content",each 
    let
    Url1=[url],
    source1=Web.Contents(Url1),
    content1=Text.FromBinary(source1)
    in
    content1
    ),
    final1=Addcontentcolumn
in
    final1

2.Here is the relevant documentation:

Web.Contents - PowerQuery M | Microsoft Learn

 

3.Of course, you can also use the following code in powerquery to view the sample documentation in the following language:

et
    Source = #shared,
    #"Web Contents" = Source[Web.Contents]
in
    #"Web Contents"

If you have new discoveries, you are welcome to share them with us.

 

 

Best Regards,

Leroy Lu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi,@trevordunham 

Regarding the issue you raised, my solution is as follows:

1.Here are some sample m languages that I hope will help you:

let
    Source = "",
    Sheet1=Source{[Item="Sheet1",kind="Sheet"]}[Date],
    Addcontentcolumn=Table.AddColumn(Sheet1,"content",each 
    let
    Url1=[url],
    source1=Web.Contents(Url1),
    content1=Text.FromBinary(source1)
    in
    content1
    ),
    final1=Addcontentcolumn
in
    final1

2.Here is the relevant documentation:

Web.Contents - PowerQuery M | Microsoft Learn

 

3.Of course, you can also use the following code in powerquery to view the sample documentation in the following language:

et
    Source = #shared,
    #"Web Contents" = Source[Web.Contents]
in
    #"Web Contents"

If you have new discoveries, you are welcome to share them with us.

 

 

Best Regards,

Leroy Lu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.