cancel
Showing results for 
Search instead for 
Did you mean: 
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!:
Mastering Power BI 2nd Edition

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!:
Mastering Power BI 2nd Edition

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!:
Mastering Power BI 2nd Edition

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
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.