Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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êsAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.