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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
Need Help.!
Item Size
a 1
a 2
a 3
b 1
b 1
b 2
Want to remove item duplication but keep with hightest size like below.
currently when i remove duplication in query it remain lower size..
[Desiral Table]
Item Size
a 3
b 2
Solved! Go to Solution.
Hi @Anonymous ,
I'd like to suggest you write a calculated table with summarize function to remove duplicate records.
New Table = SUMMARIZE ( Table, [Item], "Max Size", MAX ( Table[Size] ) )
Regards,
Xiaoxin Sheng
Hi @Anonymous ,
I'd like to suggest you write a calculated table with summarize function to remove duplicate records.
New Table = SUMMARIZE ( Table, [Item], "Max Size", MAX ( Table[Size] ) )
Regards,
Xiaoxin Sheng
Hi @Anonymous
Just create a Measure
Measure = MAX(Size)
and pull Item and the above measure.
Thanks
Raj
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.