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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
bml123
Post Patron
Post Patron

How to do sum of column from the calculated table

Hi,

 

I have a measure with calculated table,

 

CALCULATEDTABLE(

   SUMMARIZE('Table', 'Table[ClientId]',

                         "Amount_2018",CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients),

                         "Amount_2019",CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients),
                          "Diff",(CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients) -                                                       CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients)),
                         "%_change",iferror((CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients) -                                         CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients))/CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients))

     ),newClients

)

 

return sum(Diff) where %_change<=-0.02 and %_change>=0.02


I want to return the sum of diff from the calculated table where %_change <=-0.02 and %_change>=0.02. How do I achieve this?

 

3 REPLIES 3
amitchandak
Super User
Super User

@bml123 ,  a measure

 

measure =
var _tab = CALCULATEDTABLE(

SUMMARIZE('Table', 'Table[ClientId]',

"Amount_2018",CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients),

"Amount_2019",CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients),
"Diff",(CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients) - CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients)),
"%_change",iferror((CALCULATE(SUM([Amount]),'Table[Date]'=nextYear,newClients) - CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients))/CALCULATE(SUM([Amount]),'Table[Date]'=maxDate,newClients))

),newClients

)

 

return sumx(filter(_tab, _tab[%_change]<=-0.02 && _tab[%_change]>=0.02 ), _tab[Diff])

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

Hi @amitchandak ,

 

It didn't work.  It's giving an error at _tab[%_change] saying 'Cannot find name [%_change]' and 'cannot find name '[Diff]'

Hi @bml123 ,

 

Based on way of @amitchandak, you need to remove the variable table name before the columns, i.e. like below. Otherwise it will report an error.

 

...
return
    SUMX ( FILTER ( _tab, [%_change] <= -0.02 && [%_change] >= 0.02 ), [Diff] )

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors