Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Using the following simple measures, I have successfully created working web links on my dashboard. It leads the users to specific landing pages for one type of product or another based on a selected value, but the links are behaving oddly. They are underlined, but not blue, as would be typical, nor am I able to convert them into link icons.
(The two separate measures (one for each type of store) are similar and they look like this):
Any idea what's wrong?
Solved! Go to Solution.
Hi @PCorbitt ,
According to your description, here's my solution. Modify the BikeURLPass measure to:
BikeURLPass =
VAR rpturl = "https://app.powerbi.com/groups/me/reports/8590193a-cfd0-4f12-8dfb-d7cca9a91aa1/ReportSection18b2e86904674a27b4a1?experience=power-bi"
VAR rptfilter =
IF (
ISFILTERED ( Directory[StoreType] ),
"&filter=Directory/StoreType eq " & "'"
& SELECTEDVALUE ( Directory[StoreType] ) & "'"
)
RETURN
rpturl & rptfilter
Also modify the [FlowerURLPass] measure in this way. By my test, it get correct result.
Best regards,
Community Support Team_yanjiang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much for your help, but it turned out to be a amateur mistake on my part, solved by simply recategorizing a couple fields! Good to go now but I'm sure I'll have more questions. This forum has been a lifesaver!
Hi @PCorbitt ,
According to your description, here's my solution. Modify the BikeURLPass measure to:
BikeURLPass =
VAR rpturl = "https://app.powerbi.com/groups/me/reports/8590193a-cfd0-4f12-8dfb-d7cca9a91aa1/ReportSection18b2e86904674a27b4a1?experience=power-bi"
VAR rptfilter =
IF (
ISFILTERED ( Directory[StoreType] ),
"&filter=Directory/StoreType eq " & "'"
& SELECTEDVALUE ( Directory[StoreType] ) & "'"
)
RETURN
rpturl & rptfilter
Also modify the [FlowerURLPass] measure in this way. By my test, it get correct result.
Best regards,
Community Support Team_yanjiang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 40 | |
| 30 | |
| 24 |