Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I have one column that is achived %
I have one criteria table where crietrai is there that
0-10 % =200Dollar commission
10-50%=300 dollar commission
50-80% =400 Dollar Commsiion
I want that if achived % is 60 in achived % column then it shwould look up and give me 400 dollar in new column
If acihved % is 30 % then it shoudl give me 300 Dollar
If achived % is minus then need 0 liek that
@amitchandak
Solved! Go to Solution.
Hi @bilalkhokar73
I have for you two solutions:
1. I suggest that you create a new caclculaed column in the table with values using the following code
SWITCH(TRUE(),
AND('Table'[Colonne 1]>0,'Table'[Colonne 1]<=0.1),"A",
AND('Table'[Colonne 1]>0.1,'Table'[Colonne 1]<=0.5),"B",
AND('Table'[Colonne 1]>0.5,'Table'[Colonne 1]<=0.8),"C",
"D")
Did it work ? Mark it as a solution to help spreading knowledge.
A kudos would be appreciated
Hi @bilalkhokar73
I have for you two solutions:
1. I suggest that you create a new caclculaed column in the table with values using the following code
SWITCH(TRUE(),
AND('Table'[Colonne 1]>0,'Table'[Colonne 1]<=0.1),"A",
AND('Table'[Colonne 1]>0.1,'Table'[Colonne 1]<=0.5),"B",
AND('Table'[Colonne 1]>0.5,'Table'[Colonne 1]<=0.8),"C",
"D")
Did it work ? Mark it as a solution to help spreading knowledge.
A kudos would be appreciated
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
42 | |
42 |
User | Count |
---|---|
49 | |
42 | |
29 | |
28 | |
27 |