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 all,
here's a main problem: i need to SUM peoples that ar in different categories.
First I have created a measure that calculates me amount of sales (left table):
GD sutartys = CALCULATE(COUNT(Ranking[Product]),FILTER(Ranking,OR(Ranking[RodzPolisy]="BN",OR(Ranking[RodzPolisy]="FPP",OR(Ranking[RodzPolisy]="JUV",OR(Ranking[RodzPolisy]="PEN",OR(Ranking[RodzPolisy]="B1",Ranking[RodzPolisy]="B2")))))))
Then i have created two measures, that shows me to which category is assigned a seller (right table):
And then, i need to sum peoples to know how many of them is in 1GD and how many in 2+GD categories separate. And this is a really strange thing - i fail. SUM of this information is required to show certain unit manager how many sellers is in each category. Based on that SUM information i'll create another measure that will check IF(SUM(1GD)+SUM(2+GD)>5) if true, then do this, else do that.
Hope you will help me 😉 thx in advance!
Solved! Go to Solution.
Hi, @Daniel_Fdrvc
According to your description, I modify your two measures and create a new measure to show the result you want.
Like this:
1 =
VAR a =
SUMMARIZE (
Sales,
Sales[Date],
Sales[GD],
Sales[ID],
"1", IF ( SUM ( Sales[GD] ) = 1, 1, 0 )
)
RETURN
SUMX ( a, [1] )
2 =
VAR a =
SUMMARIZE (
Sales,
Sales[Date],
Sales[GD],
Sales[ID],
"2", IF ( SUM ( Sales[GD] ) > 1, 1, 0 )
)
RETURN
SUMX ( a, [2] )
3 = IF([1]+[2]>2,[1]+[2]*2,0)
If you still have problems, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Daniel_Fdrvc
According to your description, I modify your two measures and create a new measure to show the result you want.
Like this:
1 =
VAR a =
SUMMARIZE (
Sales,
Sales[Date],
Sales[GD],
Sales[ID],
"1", IF ( SUM ( Sales[GD] ) = 1, 1, 0 )
)
RETURN
SUMX ( a, [1] )
2 =
VAR a =
SUMMARIZE (
Sales,
Sales[Date],
Sales[GD],
Sales[ID],
"2", IF ( SUM ( Sales[GD] ) > 1, 1, 0 )
)
RETURN
SUMX ( a, [2] )
3 = IF([1]+[2]>2,[1]+[2]*2,0)
If you still have problems, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Daniel_Fdrvc it is not clear where you want to see the total based on the calculation you provided:
Based on this SUM OF TOTAL in each month i need to calculate IF((1GD + 2GD) > 2,(1GD*1+2GD*2),0). For example in january there should be: 1+2 = 3 > 2, so 1*1+2*2 = 5
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
In the same matrix table, like a third column:
1GD
2GD
Third: IF((1GD + 2GD) > 2,(1GD*1+2GD*2),0)
Can you tell me why you are first aggregating as count and wanted to convert that to SUM, it is contradictory right?
Proud to be a Super User!
@VijayPmaybe this problem appears because i'm calculating in matrix, not in table? Maybe this can help something?
If possible share the pbix file without senstive info. You are delaing with two different aggreation count and sum which may be causing this!
Proud to be a Super User!
@VijayPi found an opportunity to share the pbix file: https://drive.google.com/file/d/1BROeNvGjvovmpRrooyhPk3WUSNZWB4qf/view?usp=sharing
Maybe now you'll find some time to help me. Thank you in advance!
@amitchandak / @Greg_Deckler / @parry2k / @MFelix / @Ashish_Mathur maybe someone have solved same task earlier and can help me? Sorry for mentions 😉
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |