Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
M_SBS_6
Helper V
Helper V

Add a Summarize to my measure

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"}

)

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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.

amitchandak
Super User
Super User

@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.

 

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors