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 want to create a measure that allows me to show data on the chart based on which Total QTy -> Fcst or SH grouped by Key is greater.
Table I have:
I want to group it by Key and compare Totals by Type
Result
Chart:
Thank you for any help!
@arutsjak90 , Try
maxx(summarize(Table, Table[Key], Table[Type], "_1", sum(Table[Qty])),[_1])