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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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])

@ 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!:
The Definitive Guide to Power Query (M)

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])

@ 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!:
The Definitive Guide to Power Query (M)

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

 


@ 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!:
The Definitive Guide to Power Query (M)

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Kudoed Authors