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! Learn more

Reply
Anonymous
Not applicable

Sum of Value

Hi Team,

 

I knew this is simple concept  but i don't know how to implement in new measures, please help me.

 

screen.PNG

 

above file i need to calculate based on Reg LLM column for sum of (TR07+TR08+TR09).

 

screen_II.PNG

 

Thanks,

KV

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Well, as a measure it would be:

 

Measure = MAX([TR07]) + MAX([TR08]) + MAX([TR09])

 

Or you could create a calculated column in the table:

 

Column = [TR07] + [TR08] + [TR09]

 

And then just use default SUM aggregation for that new column

 

OR, you could unpivot those three columns in Power Query and that would probably make things much easier.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

5 REPLIES 5
Greg_Deckler
Community Champion
Community Champion

Well, as a measure it would be:

 

Measure = MAX([TR07]) + MAX([TR08]) + MAX([TR09])

 

Or you could create a calculated column in the table:

 

Column = [TR07] + [TR08] + [TR09]

 

And then just use default SUM aggregation for that new column

 

OR, you could unpivot those three columns in Power Query and that would probably make things much easier.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Anonymous , put Reg LLM in the visual

and a Measure like this. it should do

sum(Table[TR07])+sum(Table[TR08])+sum(Table[TR09])

 

Or

sumx(Table , Table[TR07]+Table[TR08]+Table[TR09])

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
Anonymous
Not applicable

Hi @amitchandak ,

 

Thanks for your reply,

 

I need dax measures calculation for Reg LLM with all column (TR07 to 09)

 

Thanks,

KV

@Anonymous , what do mean by that.

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
Anonymous
Not applicable

Hi @amitchandak ,

 

I have to create Icon for conditional formatting in (front) summary page, so I need this calculation value in separately.

 

Thanks,

KV

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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