Forum Discussion

PCorbitt's avatar
PCorbitt
Helper I
3 years ago
Solved

URL Link Issues

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...
  • v-yanjiang-msft's avatar
    3 years ago

    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.