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.
I have the following table
Type revenue cost
A 5 15
B 20 3
C 3 54
D 35 85
E 35 68
I would like to summarize the cost when the type =a or c or E so the final value in this case 137
Solved! Go to Solution.
Well, if your underlying data table looks like what you posted, then this should work:
Measure = SUMX(FILTER('Table',[Type] = "A" || [Type] = "C" || [Type] = "E"),[Cost])
sorry for my late answers. thank you for your help. its working
Well, if your underlying data table looks like what you posted, then this should work:
Measure = SUMX(FILTER('Table',[Type] = "A" || [Type] = "C" || [Type] = "E"),[Cost])