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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi 🙂
I'm following the microsoft page: https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-drill-through-buttons#set-the-drill... trying to configure a drill through button that will just display/go to the drill through based on a condition. I have this column 'Amended' which takes a boolean True (1) and False (0). I've written a DAX Measure as recommended in the post to feedback the drill through location based on the condition I would like:
AmendmentsDrillThrough = If(SELECTEDVALUE('fact Orders'[IsAmended])== 0, " ", "Amendments")
Following the post, it suggests next i just need to go into Action in my button and add it as a conditional formatting destination. I click the fx and go to add this measure, and it wont let me select it - it's greyed out. Any ideas?
I'm assuming it's because its not a Text value?
But again this doesn't seem to be something i can change:
Any ideas?
Solved! Go to Solution.
Hi @Anonymous ,
Please check if the Data type of your column "IsAmended" is "Text".
If it is, please change your measure like so:
AmendmentsDrillThrough = If(SELECTEDVALUE('fact Orders'[IsAmended])== "0", " ", "Amendments")
Best regards
Icey
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Hi @Anonymous ,
Please check if the Data type of your column "IsAmended" is "Text".
If it is, please change your measure like so:
AmendmentsDrillThrough = If(SELECTEDVALUE('fact Orders'[IsAmended])== "0", " ", "Amendments")
Best regards
Icey
If this post helps,then consider Accepting it as the solution to help other members find it faster.