Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
79 | |
53 | |
39 | |
36 |
User | Count |
---|---|
100 | |
85 | |
47 | |
46 | |
44 |