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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
smtiwari
Helper I
Helper I

DrillThrough Button with single value data

Hi All,

I am stuck with a problem when using drill through buttons . I am using below DAX for my drillthrough-button , its disabled initially and gets enabled upon selection on a data point.

 
Button = IF(
             SELECTEDVALUE('Table'[Data],0)==0,"Disabled", SELECTEDVALUE('Table'[Data]))
 
 

Problem1.PNG

 
Problem2.PNG
 
 
 
 
 
 
This works fine when multiple values are available for the visual, however it doesnt work when we
have single value on the visual (due to lack of data)
I want this to show the disabled text instead of Company A:
Problem3.PNG
 
What am I missing here?
1 ACCEPTED SOLUTION
v-janeyg-msft
Community Support
Community Support

Hi, @smtiwari 

It’s my pleasure to answer for you.

According your description, I think you can modify your measure to meet your requirement..

Like this:

Button =
IF (
    ISFILTERED ( Table1[data] ),
    IF (
        SELECTEDVALUE ( 'Table1'[data], 0 ) == 0,
        "Disabled",
        SELECTEDVALUE ( Table1[data] )
    ),
    "Disabled"
)

v-janeyg-msft_0-1603073377533.png

If it doesn’t solve your problem, please feel free to ask me.

Best Regards

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-janeyg-msft
Community Support
Community Support

Hi, @smtiwari 

It’s my pleasure to answer for you.

According your description, I think you can modify your measure to meet your requirement..

Like this:

Button =
IF (
    ISFILTERED ( Table1[data] ),
    IF (
        SELECTEDVALUE ( 'Table1'[data], 0 ) == 0,
        "Disabled",
        SELECTEDVALUE ( Table1[data] )
    ),
    "Disabled"
)

v-janeyg-msft_0-1603073377533.png

If it doesn’t solve your problem, please feel free to ask me.

Best Regards

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-janeyg-msft: Many thanks for your help, solution works 🙂

Hi @smtiwari ,

 

SELECTEDVALUE returns the value when there’s only one value in the specified column, otherwise returns the alternate result.

So you only interpret the result data and not the filter/action itself.

I do not know any other solution, but it works as expected.

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.