March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Team,
I have 3 fields Team,Name,Amount , need to calculate amount based on team and overall as showed in result1 result2 column
Thanks
Jen
Solved! Go to Solution.
@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])
@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])
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...
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
Thanks
Jan
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
7 | |
3 | |
2 | |
1 | |
1 |
User | Count |
---|---|
8 | |
3 | |
2 | |
2 | |
2 |