Forum Discussion

sribmc's avatar
sribmc
Icon for Helper I rankHelper I
2 years ago

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

    • sribmc's avatar
      sribmc
      Icon for Helper I rankHelper I

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

  • foodd's avatar
    foodd
    Icon for Community Champion rankCommunity 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!

    • sribmc's avatar
      sribmc
      Icon for Helper I rankHelper I

      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's avatar
    aduguid
    Icon for Memorable Member rankMemorable Member
    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's avatar
        aduguid
        Icon for Memorable Member rankMemorable Member

        You could format the hyperlink to pass the value 

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