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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
jenani_user
Frequent Visitor

Total amount based on team and overall

Hi Team,

I have 3 fields Team,Name,Amount , need to calculate amount based on team and overall as showed in result1 result2 column

jenani_user_1-1675431484996.png

Thanks 
Jen

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@jenani_user Maybe:

result1 measure = 
  VAR __team = MAX('Table'[team])
  VAR __table = FILTER(ALL('Table'),[team] = __team)
  VAR __result = SUMX(__table,[amount])
RETURN
  __result


result2 measure = SUMX(ALL('Table'),[amount])


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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

@jenani_user Maybe:

result1 measure = 
  VAR __team = MAX('Table'[team])
  VAR __table = FILTER(ALL('Table'),[team] = __team)
  VAR __result = SUMX(__table,[amount])
RETURN
  __result


result2 measure = SUMX(ALL('Table'),[amount])


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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Thank you so much!!!!

Similarly I need to calculate amount for the month i.e MTD

Can you help with this @Greg_Deckler ?

 

 

 

Thanks

Jen

@jenani_user I don't see dates anywhere, but here is some of the basics of date intelligence.

You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000

Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...

 



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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Hi Team,

I have 4 fields Team,Name,Amount ,Date, need to calculate amount based on team and overall as showed in result1MTD, result2MTD column based on date selection

jenani_user_0-1675861526596.png

Thanks

Jan

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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