Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi
I am calculating incentive for sales executive and their brands where each brand has some points. Based on these points, the executive will be eligible for a certain slab. The brands are A,B,C,D,E,F where A and C are major brands and B,D,E and F are external brands. If this excecutive achieves >80% in B,D,E and F but not in A and C, he will be eligible for A and C points.
Below example shows the ach%, score 2 is the points fixed for this month and criteria is a formula i put if >80% or else 0. Now here is where I am stuck, the formula to add in A(Farm Fresh) and C(Klassic) brand points even if his other brands are 0.
@amitchandak @Greg_Deckler @tamerj1
Solved! Go to Solution.
Hi @Anonymous ,
Please create two new measures:
Measure =
SWITCH (
TRUE (),
MAX ( 'Table'[Brands] ) IN { "A", "B" }, MAX ( 'Table'[Score 2] ),
[Arc%] >= 0.8, MAX ( 'Table'[Score 2] ),
0
)
Criteria = SUMX ( 'Table', [Measure] )
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @Anonymous ,
Please create two new measures:
Measure =
SWITCH (
TRUE (),
MAX ( 'Table'[Brands] ) IN { "A", "B" }, MAX ( 'Table'[Score 2] ),
[Arc%] >= 0.8, MAX ( 'Table'[Score 2] ),
0
)
Criteria = SUMX ( 'Table', [Measure] )
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
82 | |
70 | |
49 |
User | Count |
---|---|
143 | |
123 | |
107 | |
61 | |
55 |