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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have created the following measure, but I need to have it as a 'Summerization' Sum.
Any idea how I can amend my logic so I can include a summarization, please?
Value =
Calculate(
sum('apps'[total_val]),
'apps'[financialyear] in {"currentfy"}
)
Solved! Go to Solution.
Hi @M_SBS_6 ,
If you are trying to do aggregation again on your measure, you need to put it into a virtual table, using the function summarize, refer to this link for details:SUMMARIZE function (DAX) - DAX | Microsoft Docs
Using your data as an example, you can write a MEASURE similar to the following:
measure=
var _tab=summarize('Table',cloumn1,column2,"sum",[value])
return sumx(_tab,sum)
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @M_SBS_6 ,
If you are trying to do aggregation again on your measure, you need to put it into a virtual table, using the function summarize, refer to this link for details:SUMMARIZE function (DAX) - DAX | Microsoft Docs
Using your data as an example, you can write a MEASURE similar to the following:
measure=
var _tab=summarize('Table',cloumn1,column2,"sum",[value])
return sumx(_tab,sum)
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@M_SBS_6 , Summarization or aggregation is already summed for this measure what else do you want
The information you have provided is not making the problem clear to me. Can you please explain with an example.
Appreciate your Kudos.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |