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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
sribmc
Helper I
Helper I

How to use hyperlink as drill through in PowerBI

Hi Team,

 

I have 1st page :

 

Zone
Z1
Z2
Z3
Z4
Z5

 

2nd page contains 

 

ZoneState
Z1HNK
Z1JLK
Z1MNK
Z2LL1
Z3LL2
Z4LL3
Z5LL4

 

I need hyperlink on zone at 1st page 

when I select Z1 it needs to redirect to Page 2 and filter need to happen on url 

 

expected out put on page 2

 

Zone selected : Z1

Zone    State

z1         HNK

z1         JLK

z1       MNK

 

NEED HELP ASAP

11 REPLIES 11
aduguid
Super User
Super User

Hyperlink from a Value (Using Bookmarks):

If you want to hyperlink directly from a value (e.g., a data point in a table or chart) to another page, you need to use bookmarks and a bit of DAX:

  • Create a bookmark for each page you want to navigate to. To do this, go to the View tab, select Bookmarks Pane, and then create a bookmark for each page.

  • Create a measure to navigate to the desired bookmark based on the selected value. 

 

NavigateToPage = 
IF(
    SELECTEDVALUE(Table[Column]) = "Value1",
    "Bookmark1",
    IF(
        SELECTEDVALUE(Table[Column]) = "Value2",
        "Bookmark2",
        "DefaultBookmark"
    )
)

 

 

@aduguid here we need to filter as well other than just navigation

You could format the hyperlink to pass the value 

ProductLink = "ReportSection?filter=Product/ProductName eq '" & 'Product'[ProductName] & "'"

Can you please send pbix file of sample one which works above scenerio that would be helpful I have tried this but not working

foodd
Community Champion
Community Champion

Please elaborate futher.    Some general questions:   

  • Have you already incorporated Bookmarks, Page and Bookmark Navigators?   
  • Is the report consumer navigating within the same report and visuals or is your intention to launch a different but related report?   
  • In what way is the consumer interacting with the visuals?   Meaning, is this a Dashboard, Report, App, Embedded... 
  • Are you intending that the report consumer have a bread crumb trail somewhere in the canvas layout?

If your requirement is solved, please make THIS ANSWER a SOLUTION ✔️ and help other users find the solution quickly. Please hit the LIKE 👍 button if this comment helps you.  Proud to be a Super User!

@foodd I have 1st page :

 

Zone
Z1
Z2
Z3
Z4
Z5

 

2nd page contains 

 

ZoneState
Z1HNK
Z1JLK
Z1MNK
Z2LL1
Z3LL2
Z4LL3
Z5LL4

 

I need hyperlink on zone at 1st page 

when I select Z1 it needs to redirect to Page 2 and filter need to happen on url 

 

expected out put on page 2

 

Zone selected : Z1

Zone    State

z1         HNK

z1         JLK

z1       MNK

 

These need to be developed on report

aduguid
Super User
Super User

Can you use the drill through option?

we know drill through option but user needs that work on click of hyperlink

please help us asap

 

I too have same requirment. Could you tell me approach if you have done it.

 

Do you have any approach for that

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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