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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
StooHoo
New Member

How to add a dynamic URL to a table

I have a table with over 6,000 individual items in it and what I'd like to do is create a hyperlink for each item so that when a user selects one it takes them to a specific report for that item. 

 

Is there a way to add one overarching URL that changes dynamically depending on which item is selected?

1 ACCEPTED SOLUTION
StooHoo
New Member

So I was finally able to solve the issue by creating an additional column within the data I was working from and creating a formula for that column that was the URL I was looking to send users to with the dynamic variable the item number from another column within the table.

View solution in original post

5 REPLIES 5
StooHoo
New Member

So I was finally able to solve the issue by creating an additional column within the data I was working from and creating a formula for that column that was the URL I was looking to send users to with the dynamic variable the item number from another column within the table.

Anonymous
Not applicable

@StooHoo how did you solve this issue?

Anonymous
Not applicable

Hello,


I wrote an answer, but I've got an error.

 

I recommend using Measures as much as possible. Avoid calculated columns. Basically follow this Youtube video for help: https://www.youtube.com/watch?v=Wz2aD0XvkUk 

I'd write the measure in this way, tho:

urlMeasure =
var slct = max (you're table[you're column]) // selected value
return
"https://www.google.com/search?q=" & slct // put you're URL instead of google

BR,
Anton
v-frfei-msft
Community Support
Community Support

Hi @StooHoo ,

 

Refering to the online document about URL filter. We can create a measure like that to get the dynamic url.

url = sele = max (your table[value])
return
"app.powerbi.com.xxxxxx" & ?filter=Store/Territory eq sele

 

If it doesn't meet your requirement,  kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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