Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I need help to get the MAX from a column if two other columns data is a match.
See example and screenshots below;
If [ShipmentNo] in my Logistics table is = to [strCntDocID] in my ContainerDT table, then I want to show the MAX number from the [IntSeqNo] which is also in my ContainerDT table.
Hopefully someone can assist me.
Thanks,
Greg
Solved! Go to Solution.
@Gregory-N
Add a Calculated Column in your Logistics table as follows:
SeqNoMax =
MAXX (
FILTER ( ContainerDTtable, ContainerDTtable = LogisticTable[ShipmentNo] ),
ContainerDTtable[IntSeqNo]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Good morning @Fowmy
Thanks for the response.
Unfortunately this doesn't work, it brings up an #ERROR.
The error message is "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value"
I added the column as per your above measure:
SeqNoMax
@Gregory-N
Hope you added this as a calculated column in your logistic table?
Please share a screenshot of the error
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Gregory-N
Add a Calculated Column in your Logistics table as follows:
SeqNoMax =
MAXX (
FILTER ( ContainerDTtable, ContainerDTtable = LogisticTable[ShipmentNo] ),
ContainerDTtable[IntSeqNo]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
98 | |
76 | |
76 | |
49 | |
27 |