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 have one question about aggregation in Power BI:
My Measure =
Solved! Go to Solution.
Hi Amit,
Thanks, it really works well.
Just one more thing I am getting the table correct , is there a way to get the total at the bottom.
@Priya2007 , Try a measure like
sumx(values(Table[id]),If([SAI]> [SAI liM]*.7 || [SAF]>[SAFLimit]*.7,1,0))
or
sumx(summarize(Table[id],"_1",If([SAI]> [SAI liM]*.7 || [SAF]>[SAFLimit]*.7,1,0)),[_1])
Hi Amit,
Thanks, it really works well.
Just one more thing I am getting the table correct , is there a way to get the total at the bottom.