Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I am trying to replicate the below Tableau column in PowerBI DAX:
That column will equal 'Yes' if any of the designated columns hold 'Yes' for each applicant.
I'm struggling to replicate this in PBI. My current code is not returned the expected results:
Can anyone help?
Solved! Go to Solution.
You can use
Grade Discount =
Hi @Anonymous,
It's been a while since I've heard back from you and I wanted to follow up. Have you had a chance to try the solution that has been offered? If the issue has been resolved, could you mark the post as resolved? If you're still experiencing challenges, please feel free to let us know and we'll be happy to continue to help!
Looking forward to your reply!
You can use
Grade Discount =
Thanks for your reply. Unfortunately this has increased the difference between the PBI and Tableau. See below:
@Anonymous ,
The logic in Tableau is that if exactly one of the conditions is "YES", then the final result is also "YES". Otherwise it should be "NO".
Your code above does exactly the same, so the result should be correct without adding any changes.
Do you still see differences between Tableau and PBI? If you can create a sample dataset, it will be easier to verify.
| Memorable Member | Former Super User If I helped, please accept the solution and give kudos! |
Hi @Anonymous ,
The Tableu code returns is if ONLY ONE of the conditions is YES. If it turns out that there are more YES, the code returns "No".
To make your code check if any factor is equal to "YES", please change the condition to:
RETURN
IF (ConditionCount >= 1, "YES", "NO")
| Memorable Member | Former Super User If I helped, please accept the solution and give kudos! |
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 45 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 115 | |
| 114 | |
| 38 | |
| 36 | |
| 26 |