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! Learn more
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 
Advance 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.