Forum Discussion

5 Replies

  • If the parameter ends up not working for you a workaround may be to write a measure that basically checks which level is being hovered over and then displays the value. You can use that measure as a formatted title of the tooltip instead of using the legend.
    EG.

    Tooltip Title =
    var _scope =
    HASONEVALUE(marketTable[Unit Level])
    Return
    IF(
        _scope,
        "Values from " & SELECTEDVALUE(marketTable[Unit Level]),
        "Values from " & SELECTEDVALUE(marketTable[Market])
    )