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.
Hallo
I am looking for a way to calculate the column "HasSuccess" in the table below given the two other columns "ItemID" and "ItemStatus". If an ItemID has a successful status, I want it to return True and otherwise return False.
ItemID | ItemStatus | HasSuccess |
1 | Success | True |
1 | Fail | True |
1 | Success | True |
2 | Fail | False |
2 | Fail | False |
3 | Success | True |
4 | Fail | True |
4 | Success | True |
5 | Fail | False |
Thanks
Would it be possible to do this as a power query instead?
Hi @Anonymous ,
In Power Query, you will need to do a grouping against your ID column.
Check GROUP BY in Power BI in Edit Query:
https://www.poweredsolutions.co/2019/07/30/grouping-rows-with-power-bi-power-query/
Once data is grouped at ID level, you can try creating a IF-ELSE custom column.
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
Thanks,
Pragati
Hi @Anonymous ,
You can create a column using DAX expresion as follows:
CalcValue =
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
42 |