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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors