Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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"
)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.
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"
)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.
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.
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 - Power BI Tutorials
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!