March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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
@Anonymous , try as a new column
new column = if(countx(filter(table[ItemID] =earlier(Table[ItemID]) && Table[ItemStatus] = "Success"),table[ItemID)>0,"True","False")
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 =
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
90 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |