Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 @Breen,
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:
@Breen ,
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 @Breen ,
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! |
User | Count |
---|---|
84 | |
76 | |
74 | |
49 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |