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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
durgaraop21
Helper II
Helper II

in Power BI, want to display multiple URLs in a single column of a table visual

In Power BI, How to create hyperlink with comma separated in same column in table visual its has to clickable to open respected hyperlinks

Sample URLs

https://images.google.com/

https://lens.google/


Need to dispaly only single column, Dont spilit into multiple URL.

If you see the below screen, I get comma separated "URLs" for each  and also getting comma separated URL 

 

durgaraop21_0-1739443629279.png

 

 

durgaraop21_1-1739443817089.png

 

 

 

7 REPLIES 7
Anonymous
Not applicable

Hi @durgaraop21 ,

 

Maybe you can try below M code:

let
    Source = Table.FromRecords({
        [ID = 1, URLs = "https://images.google.com/, https://lens.google/"],
        [ID = 2, URLs = "https://example.com/, https://test.com/"]
    }),

    SplitURLs = Table.SplitColumn(Source, "URLs", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"URLs.1", "URLs.2"}),
    AddHyperlink1 = Table.AddColumn(SplitURLs, "URLs.1_Hyperlink", each if [URLs.1] <> null then "Link 1: " & [URLs.1] else null),
    AddHyperlink2 = Table.AddColumn(AddHyperlink1, "URLs.2_Hyperlink", each if [URLs.2] <> null then "Link 2: " & [URLs.2] else null),
    CombineHyperlinks = Table.AddColumn(AddHyperlink2, "CombinedURLs", each Text.Combine({[URLs.1_Hyperlink], [URLs.2_Hyperlink]}, ", ")),
    RemoveColumns = Table.SelectColumns(CombineHyperlinks, {"ID", "CombinedURLs"})
in
    RemoveColumns

vkongfanfmsft_0-1739524220459.png

vkongfanfmsft_1-1739524231697.png

 

Best Regards,
Adamk Kong

 

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

@Anonymous Thanks for your responce.

Iam expecting this result:

Need to show in single cell and clickable hyperlinks links

nilendraFabric
Super User
Super User

try this 

FormattedURLs = SUBSTITUTE(YourTable[YourURLColumn], ",", UNICHAR(10))

@nilendraFabric Thanks for your responce.

Requirement:
Need this links become click-able hyperlinks in a report table to make it easier for my users when they view open the link?

 

Fowmy
Super User
Super User

@durgaraop21 

You can split the combined URL text into multiple rows in a single column using Split Column and choosing comma as the delimiter. In Power BI, set the Data category as Web URL


Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

@Fowmy  Thanks for the suggestion.

But i need show the data without spilit column, Each cell have different clickable Links.

Requirement:
Need this links become click-able hyperlinks in a report table to make it easier for my users when they view open the link?

@durgaraop21 
Let me understand your question first if you are trying to include two URL's inside a single cell in a table I don't think it's possible the only way you allow each url to be clicked is to have it on separate cells that means you need to split them into rows or columns. 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors