Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have 2 tables (PO & Item) that have the 2 elements I am doing a comparison. If the Line Revision and the PO Revision for each PO is the different, then I want to mark it "True" for further analysis. I've tried Rev Comparision= IF(PO[PORevision]=Item[ItemRevision], "True", "False") but it's giving me error! for example, Line 7 where the revision is not the same, I would want to mark it false. Can someone help please?
Solved! Go to Solution.
Hi @tracyhopaulson ,
Based on the file you sent me trough private message do the following:
RevComparision = MAX(Items[Revision]) = MAX(PurchaseOrderLines[Revision])
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português
You may try the DAX below to add a calculated column.
Column = IF ( RELATED ( PO[PORevision] ) = 'Item'[ItemRevision], "True", "False" )
I entered your formula and got error that the ItemRevision column either doesn't exist or doesn't have a relationship to any table available in the current context.
Hi @tracyhopaulson ,
Based on the file you sent me trough private message do the following:
RevComparision = MAX(Items[Revision]) = MAX(PurchaseOrderLines[Revision])
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsMarch 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
96 | |
72 | |
44 | |
38 | |
29 |
User | Count |
---|---|
156 | |
92 | |
61 | |
44 | |
42 |